From 42ae6851c023cbe34c0b68e3d56a648258ef57c6 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Mon, 14 Jul 2008 19:31:06 -0700 Subject: [PATCH] fix bug names add a new one: go func() { print "ok\n" } (); SVN=127144 --- test/bugs/bug067.go | 11 +++++++++++ test/bugs/{bug065.go => bug068.go} | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 test/bugs/bug067.go rename test/bugs/{bug065.go => bug068.go} (91%) 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 -- 2.48.1