]> 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 d5adea71ecc014676df60b221b5a652e23ebaabd..ec25161d13c675c61bb6b21ffc8310a262a80c5f 100644 (file)
@@ -4,15 +4,16 @@
 // 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
 }
 
 
-func f2(a int) (a int, b float32) { // ERROR "redeclared|definition"
+func f2(a int) (a int, b float32) { // ERROR "duplicate argument a|definition|redeclared"
        return 8, 8.0
 }