1
0
mirror of https://github.com/golang/go synced 2024-11-25 13:07:57 -07:00

Don't try to define the same label twice, as that produces a

label redefinition error.

R=gri
DELTA=6  (0 added, 0 deleted, 6 changed)
OCL=26357
CL=26372
This commit is contained in:
Ian Lance Taylor 2009-03-16 21:47:38 -07:00
parent 3cfd91f85b
commit 1e39143966
2 changed files with 6 additions and 6 deletions

View File

@ -7,12 +7,12 @@
package main package main
func main() { func main() {
if {} else L: ; if {} else L1: ;
if {} else L: main() ; if {} else L2: main() ;
} }
/* /*
These should be legal according to the spec. These should be legal according to the spec.
bug140.go:6: syntax error near L bug140.go:6: syntax error near L1
bug140.go:7: syntax error near L bug140.go:7: syntax error near L2
*/ */

View File

@ -137,8 +137,8 @@ bugs/bug139.go:7: fatal error: naddr: ONAME class x 5
BUG should compile BUG should compile
=========== bugs/bug140.go =========== bugs/bug140.go
bugs/bug140.go:6: syntax error near L bugs/bug140.go:6: syntax error near L1
bugs/bug140.go:7: syntax error near L bugs/bug140.go:7: syntax error near L2
BUG should compile BUG should compile
=========== fixedbugs/bug016.go =========== fixedbugs/bug016.go