Source file test/func1.go

     1  // errorcheck
     2  
     3  // Copyright 2009 The Go Authors. All rights reserved.
     4  // Use of this source code is governed by a BSD-style
     5  // license that can be found in the LICENSE file.
     6  
     7  // Test that result parameters are in the same scope as regular parameters.
     8  // Does not compile.
     9  
    10  package main
    11  
    12  func f1(a int) (int, float32) {
    13  	return 7, 7.0
    14  }
    15  
    16  
    17  func f2(a int) (a int, b float32) { // ERROR "duplicate argument a|definition|redeclared"
    18  	return 8, 8.0
    19  }
    20  

View as plain text