mirror of https://github.com/golang/go.git
re-fix bug067, update golden.out
R=r DELTA=9 (4 added, 3 deleted, 2 changed) OCL=15655 CL=15655
This commit is contained in:
parent
ebd1eef41e
commit
173ca8a2d0
|
|
@ -6,6 +6,10 @@
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
|
var c *chan int
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
go func() { print("ok\n") } ();
|
c = new(chan int)
|
||||||
|
go func() { print("ok\n"); c <- 0 } ();
|
||||||
|
<-c
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,4 @@
|
||||||
|
|
||||||
=========== ./dialgoogle.go
|
|
||||||
/Users/r/go/pkg/net.a:4 dialgoogle.go:5: os is becoming a package behind your back
|
|
||||||
|
|
||||||
=========== ./helloworld.go
|
=========== ./helloworld.go
|
||||||
hello, world
|
hello, world
|
||||||
|
|
||||||
|
|
@ -250,7 +247,7 @@ fixedbugs/bug073.go:9: illegal types for operand: RSH
|
||||||
(<int32>INT32)
|
(<int32>INT32)
|
||||||
|
|
||||||
=========== fixedbugs/bug081.go
|
=========== fixedbugs/bug081.go
|
||||||
fixedbugs/bug081.go:5: x is var, not type
|
fixedbugs/bug081.go:5: no type x
|
||||||
|
|
||||||
=========== fixedbugs/bug086.go
|
=========== fixedbugs/bug086.go
|
||||||
fixedbugs/bug086.go:5: function ends without a return statement
|
fixedbugs/bug086.go:5: function ends without a return statement
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue