1
0
mirror of https://github.com/golang/go synced 2024-11-21 14:44:40 -07:00

make test/fixedbugs save for optional semis

R=rsc
https://golang.org/cl/173045
This commit is contained in:
Robert Griesemer 2009-12-10 11:25:54 -08:00
parent 4d44d6a3d6
commit 60d4e30dbb
8 changed files with 13 additions and 17 deletions

View File

@ -7,8 +7,7 @@
package main
func main()
{
func main() {
s := float(0);
s := float(0); // BUG redeclaration
}

View File

@ -18,5 +18,5 @@ func main() {
type s2 int;
var k = func (a int) int { return a+1 }(3);
_, _ = j, k;
ro:
ro: ;
}

View File

@ -12,8 +12,7 @@ swap(x, y int) (u, v int) {
}
func
main()
{
main() {
a := 1;
b := 2;
a, b = swap(swap(a, b));

View File

@ -7,12 +7,12 @@
package main
func f() {
exit:
exit: ;
}
func main() {
exit: // this should be legal (labels not properly scoped?)
exit: ; // this should be legal (labels not properly scoped?)
}
/*

View File

@ -15,7 +15,7 @@ var i1 I1;
var i2 I2;
func
main()
{
main() {
i2 = e().(I2); // bug089.go:16: fatal error: agen_inter i2i
}

View File

@ -17,9 +17,9 @@ var v8 = T5{f:11}
var pf func(T1)
func main() {
if v1 != 1 || v2.f != 2 || v3[0] != 3 || v3[1] != 4
|| v4[0] != 5 || v4[1] != 6 || v5[0] != 7 || v5[1] != 8
|| v6.f != 9 || v7[0] != 10 || v8[0] != 11 {
if v1 != 1 || v2.f != 2 || v3[0] != 3 || v3[1] != 4 ||
v4[0] != 5 || v4[1] != 6 || v5[0] != 7 || v5[1] != 8 ||
v6.f != 9 || v7[0] != 10 || v8[0] != 11 {
panic()
}
}

View File

@ -9,12 +9,10 @@ package main
var s [8]string
func
init()
{
init() {
s = [...]string{ "now", "is", "the", "time", "to", "fix", "this", "bug"}
}
func
main()
{
main() {
}

View File

@ -14,4 +14,4 @@ import bufio "os" // ERROR "redeclared|redefinition|incompatible"
import (
"fmt"; // GCCGO_ERROR "previous"
fmt "math"; // ERROR "redeclared|redefinition|incompatible"
)
)