Source file test/fixedbugs/issue7129.go
1 // errorcheck 2 3 // Copyright 2014 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 // Issue 7129: inconsistent "wrong arg type" error for multivalued g in f(g()) 8 9 package main 10 11 func f(int) {} 12 13 func g() bool { return true } 14 15 func h(int, int) {} 16 17 func main() { 18 f(g()) // ERROR "in argument to f|incompatible type|cannot convert" 19 f(true) // ERROR "in argument to f|incompatible type|cannot convert" 20 h(true, true) // ERROR "in argument to h|incompatible type|cannot convert" 21 } 22