diff options
Diffstat (limited to 'test/func1.go')
-rw-r--r-- | test/func1.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/func1.go b/test/func1.go index 056ff9877..c89f7ff2e 100644 --- a/test/func1.go +++ b/test/func1.go @@ -1,14 +1,15 @@ -// errchk $G $F.go +// errorcheck // 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. -// does not compile and should not compile +// Test that result parameters are in the same scope as regular parameters. +// Does not compile. package main -func f1(a int) (int, float32) { // BUG (not caught by compiler): multiple return values must have names +func f1(a int) (int, float32) { return 7, 7.0 } |