]> Cypherpunks repositories - gostls13.git/commitdiff
Match gccgo error messages.
authorIan Lance Taylor <iant@golang.org>
Wed, 21 Oct 2009 18:42:09 +0000 (11:42 -0700)
committerIan Lance Taylor <iant@golang.org>
Wed, 21 Oct 2009 18:42:09 +0000 (11:42 -0700)
bug205.go:14:12: error: index must be integer
bug205.go:15:12: error: index must be integer
bug205.go:16:12: error: incompatible type for map index

R=rsc
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=35957
CL=35960

test/fixedbugs/bug205.go

index 5fb0a0d16b97ad7984b346839cd1f908c3271b03..4262ec10dce26b9565aee69ca160fa2c90b3ce57 100644 (file)
@@ -11,8 +11,8 @@ var s string;
 var m map[string]int;
 
 func main() {
-       println(t["hi"]);       // ERROR "non-integer"
-       println(s["hi"]);       // ERROR "non-integer"
+       println(t["hi"]);       // ERROR "integer"
+       println(s["hi"]);       // ERROR "integer"
        println(m[0]);  // ERROR "map index"
 }