fix bug names

add a new one: go func() { print "ok\n" } ();

SVN=127144
This commit is contained in:
Rob Pike 2008-07-14 19:31:06 -07:00
parent 230230c880
commit 42ae6851c0
2 changed files with 12 additions and 1 deletions

11
test/bugs/bug067.go Normal file
View File

@ -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" } ();
}

View 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