From: Rob Pike Date: Tue, 15 Jul 2008 02:31:06 +0000 (-0700) Subject: fix bug names X-Git-Tag: weekly.2009-11-06~3498 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=42ae6851c023cbe34c0b68e3d56a648258ef57c6;p=gostls13.git fix bug names add a new one: go func() { print "ok\n" } (); SVN=127144 --- diff --git a/test/bugs/bug067.go b/test/bugs/bug067.go new file mode 100644 index 0000000000..e66b48c6d0 --- /dev/null +++ b/test/bugs/bug067.go @@ -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" } (); +} diff --git a/test/bugs/bug065.go b/test/bugs/bug068.go similarity index 91% rename from test/bugs/bug065.go rename to test/bugs/bug068.go index d7d5f74a88..9fe0656523 100644 --- a/test/bugs/bug065.go +++ b/test/bugs/bug068.go @@ -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