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 9package main 10 11func f(int) {} 12 13func g() bool { return true } 14 15func h(int, int) {} 16 17func 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