]> Cypherpunks repositories - gostls13.git/commitdiff
- parameters must be named
authorRobert Griesemer <gri@golang.org>
Mon, 28 Jul 2008 19:08:06 +0000 (12:08 -0700)
committerRobert Griesemer <gri@golang.org>
Mon, 28 Jul 2008 19:08:06 +0000 (12:08 -0700)
R=r
OCL=13520
CL=13520

test/bugs/bug079.go [new file with mode: 0644]

diff --git a/test/bugs/bug079.go b/test/bugs/bug079.go
new file mode 100644 (file)
index 0000000..d26b071
--- /dev/null
@@ -0,0 +1,12 @@
+// 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.
+
+// $G $D/$F.go && echo BUG: succeeds incorrectly
+
+package main
+
+func f(int);  // parameter must be named
+func g(int, int);  // parameter must be named
+
+/* We had this discussion before and agreed that all parameters must be named. */