mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
strings: fix minor bug in LastIndexFunc
R=r, rsc CC=golang-dev https://golang.org/cl/2250042
This commit is contained in:
parent
b11740fb6d
commit
8ee986570a
2 changed files with 2 additions and 1 deletions
|
|
@ -514,6 +514,7 @@ var indexFuncTests = []IndexFuncTest{
|
|||
IndexFuncTest{"\xc0☺\xc0\xc0", not(isValidRune), 0, 5},
|
||||
IndexFuncTest{"ab\xc0a\xc0cd", not(isValidRune), 2, 4},
|
||||
IndexFuncTest{"a\xe0\x80cd", not(isValidRune), 1, 2},
|
||||
IndexFuncTest{"\x80\x80\x80\x80", not(isValidRune), 0, 3},
|
||||
}
|
||||
|
||||
func TestIndexFunc(t *testing.T) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue