2014-01-21 20:44:54 -07:00
|
|
|
// errorcheck
|
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
2014-01-21 20:44:54 -07:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
func foo() (T, T) { // ERROR "undefined"
|
|
|
|
return 0, 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func bar() (T, string, T) { // ERROR "undefined"
|
|
|
|
return 0, "", 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
var x, y, z int
|
|
|
|
x, y = foo()
|
2020-12-08 23:01:22 -07:00
|
|
|
x, y, z = bar() // ERROR "cannot (use type|assign) string|incompatible type"
|
|
|
|
_, _, _ = x, y, z
|
2014-01-21 20:44:54 -07:00
|
|
|
}
|