summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2008-07-28 12:08:06 -0700
committerRobert Griesemer <gri@golang.org>2008-07-28 12:08:06 -0700
commit5b994164944ebf08a35d290187275d1d2b58c326 (patch)
tree6c659dcea3461f5c54a9361c1a2b2f86a561702f
parent8e08fc0d57a42aebafd2232b48c4c5ea2e24c00d (diff)
downloadgolang-5b994164944ebf08a35d290187275d1d2b58c326.tar.gz
- parameters must be named
R=r OCL=13520 CL=13520
-rw-r--r--test/bugs/bug079.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/bugs/bug079.go b/test/bugs/bug079.go
new file mode 100644
index 000000000..d26b07114
--- /dev/null
+++ b/test/bugs/bug079.go
@@ -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. */