]> Cypherpunks repositories - gostls13.git/commitdiff
Tweak comments so that this test passes with gccgo.
authorIan Lance Taylor <iant@golang.org>
Mon, 8 Dec 2008 19:31:55 +0000 (11:31 -0800)
committerIan Lance Taylor <iant@golang.org>
Mon, 8 Dec 2008 19:31:55 +0000 (11:31 -0800)
bug126.go:7:7: error: redefinition of 'none'
bug126.go:6:7: note: previous definition of 'none' was here

R=gri
DELTA=3  (1 added, 0 deleted, 2 changed)
OCL=20563
CL=20723

test/bugs/bug126.go

index 2481e1dd3f504f14b829ff07686293b4d6f500d5..8fde08aa318673428ab5bfe88154477c04bb8e60 100644 (file)
@@ -6,5 +6,6 @@
 
 package main
 
-const none = 0  // same const identifier declared twice should not be accepted
-const none = 1  // ERROR "redeclared"
+// same const identifier declared twice should not be accepted
+const none = 0  // GCCGO_ERROR "previous"
+const none = 1  // ERROR "redeclared|redef"