]> Cypherpunks.ru repositories - gostls13.git/blobdiff - test/func1.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / func1.go
index 895fe94b8d42b2d4ae1196f089ad00d04eac423c..ec25161d13c675c61bb6b21ffc8310a262a80c5f 100644 (file)
@@ -1,18 +1,19 @@
-// 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, float) {  // BUG (not caught by compiler): multiple return values must have names
-       return 7, 7.0;
+func f1(a int) (int, float32) {
+       return 7, 7.0
 }
 
 
-func f2(a int) (a int, b float) {  // return value names must be different from parameter names
-       return 8, 8.0;
+func f2(a int) (a int, b float32) { // ERROR "duplicate argument a|definition|redeclared"
+       return 8, 8.0
 }