2012-02-16 21:49:30 -07:00
|
|
|
// run
|
2009-09-03 14:33:16 -06:00
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
func main() {
|
cgo, goyacc, go/build, html, http, path, path/filepath, testing/quick, test: use rune
Nothing terribly interesting here.
R=golang-dev, bradfitz, gri, r
CC=golang-dev
https://golang.org/cl/5300043
2011-10-25 23:20:02 -06:00
|
|
|
nchar := 0
|
|
|
|
a := []rune{'日', '本', '語', 0xFFFD}
|
2009-09-15 13:42:24 -06:00
|
|
|
for _, char := range "日本語\xc0" {
|
2009-09-03 14:33:16 -06:00
|
|
|
if nchar >= len(a) {
|
cgo, goyacc, go/build, html, http, path, path/filepath, testing/quick, test: use rune
Nothing terribly interesting here.
R=golang-dev, bradfitz, gri, r
CC=golang-dev
https://golang.org/cl/5300043
2011-10-25 23:20:02 -06:00
|
|
|
println("BUG")
|
|
|
|
break
|
2009-09-03 14:33:16 -06:00
|
|
|
}
|
|
|
|
if char != a[nchar] {
|
cgo, goyacc, go/build, html, http, path, path/filepath, testing/quick, test: use rune
Nothing terribly interesting here.
R=golang-dev, bradfitz, gri, r
CC=golang-dev
https://golang.org/cl/5300043
2011-10-25 23:20:02 -06:00
|
|
|
println("expected", a[nchar], "got", char)
|
|
|
|
println("BUG")
|
|
|
|
break
|
2009-09-03 14:33:16 -06:00
|
|
|
}
|
cgo, goyacc, go/build, html, http, path, path/filepath, testing/quick, test: use rune
Nothing terribly interesting here.
R=golang-dev, bradfitz, gri, r
CC=golang-dev
https://golang.org/cl/5300043
2011-10-25 23:20:02 -06:00
|
|
|
nchar++
|
2009-09-03 14:33:16 -06:00
|
|
|
}
|
|
|
|
}
|