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
10package main
11
12func f1(a int) (int, float32) {
13	return 7, 7.0
14}
15
16
17func f2(a int) (a int, b float32) { // ERROR "duplicate argument a|definition"
18	return 8, 8.0
19}
20