1
0
mirror of https://github.com/golang/go synced 2024-09-24 15:20:16 -06:00

- parameters must be named

R=r
OCL=13520
CL=13520
This commit is contained in:
Robert Griesemer 2008-07-28 12:08:06 -07:00
parent 9c8f48bd0e
commit 4a9b4e6604

12
test/bugs/bug079.go Normal file
View File

@ -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. */