diff options
Diffstat (limited to 'test/fixedbugs/bug067.go')
-rw-r--r-- | test/fixedbugs/bug067.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug067.go b/test/fixedbugs/bug067.go index 451ebbbf3..fd22cd6f8 100644 --- a/test/fixedbugs/bug067.go +++ b/test/fixedbugs/bug067.go @@ -9,7 +9,7 @@ package main var c *chan int func main() { - c = new(chan int) + c = new(chan int); go func() { print("ok\n"); c <- 0 } (); <-c } |