commit | 60d4e30dbb15192494e516ecb7b8087d909d2d62 | [log] [tgz] |
---|---|---|
author | Robert Griesemer <gri@golang.org> | Thu Dec 10 11:25:54 2009 -0800 |
committer | Robert Griesemer <gri@golang.org> | Thu Dec 10 11:25:54 2009 -0800 |
tree | b5912821b7e9c63aefa4bb4e8ec66e13d04d6082 | |
parent | 4d44d6a3d603ffe79bdd58981400b649c3b41670 [diff] [blame] |
make test/fixedbugs save for optional semis R=rsc https://golang.org/cl/173045
diff --git a/test/fixedbugs/bug203.go b/test/fixedbugs/bug203.go index 5b04b2e..bf86ee9 100644 --- a/test/fixedbugs/bug203.go +++ b/test/fixedbugs/bug203.go
@@ -9,12 +9,10 @@ var s [8]string func -init() -{ +init() { s = [...]string{ "now", "is", "the", "time", "to", "fix", "this", "bug"} } func -main() -{ +main() { }