]> Cypherpunks repositories - gostls13.git/commitdiff
fix bug names
authorRob Pike <r@golang.org>
Tue, 15 Jul 2008 02:31:06 +0000 (19:31 -0700)
committerRob Pike <r@golang.org>
Tue, 15 Jul 2008 02:31:06 +0000 (19:31 -0700)
add a new one: go func() { print "ok\n" } ();

SVN=127144

test/bugs/bug067.go [new file with mode: 0644]
test/bugs/bug068.go [moved from test/bugs/bug065.go with 91% similarity]

diff --git a/test/bugs/bug067.go b/test/bugs/bug067.go
new file mode 100644 (file)
index 0000000..e66b48c
--- /dev/null
@@ -0,0 +1,11 @@
+// $G $D/$F.go && $L $F.$A && ./$A.out
+
+// Copyright 2009 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package main
+
+func main() {
+       go func() { print "ok\n" } ();
+}
similarity index 91%
rename from test/bugs/bug065.go
rename to test/bugs/bug068.go
index d7d5f74a88b0c2598513fa9728167801e58a11b8..9fe06565233c9403f0e9a9a5842af2e7abee51ef 100644 (file)
@@ -1,4 +1,4 @@
-// $G $D/$F.go && $L $F.$A && ./$A.out
+// errchk $G $D/$F.go
 
 // Copyright 2009 The Go Authors. All rights reserved.
 // Use of this source code is governed by a BSD-style