]> Cypherpunks repositories - gostls13.git/commitdiff
Match gccgo error messages.
authorIan Lance Taylor <iant@golang.org>
Mon, 24 Aug 2009 22:56:39 +0000 (15:56 -0700)
committerIan Lance Taylor <iant@golang.org>
Mon, 24 Aug 2009 22:56:39 +0000 (15:56 -0700)
bug192.go:11:5: error: redefinition of ‘fmt’
bug192.go:9:8: note: previous definition of ‘fmt’ was here

R=r
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=33780
CL=33790

test/fixedbugs/bug192.go

index 0131a516f2f386980db2ba27def1a2b2454daec2..282ed30d3615ba6d0b194f756ad4ed1eaed0644d 100644 (file)
@@ -6,6 +6,6 @@
 
 package main
 
-import "fmt"
+import "fmt"   // GCCGO_ERROR "previous"
 
-var fmt int    // ERROR "redecl"
+var fmt int    // ERROR "redecl|redefinition"