summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug067.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug067.go')
-rw-r--r--test/fixedbugs/bug067.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug067.go b/test/fixedbugs/bug067.go
index e66b48c6d..a7efbcf16 100644
--- a/test/fixedbugs/bug067.go
+++ b/test/fixedbugs/bug067.go
@@ -7,5 +7,5 @@
package main
func main() {
- go func() { print "ok\n" } ();
+ go func() { print("ok\n") } ();
}