2012-02-16 21:49:59 -07:00
|
|
|
// errorcheck
|
2010-07-12 07:34:36 -06:00
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
2010-07-12 07:34:36 -06:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// https://code.google.com/p/gofrontend/issues/detail?id=1
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
func f1() {
|
2020-12-01 18:37:12 -07:00
|
|
|
a, b := f() // ERROR "assignment mismatch|does not match|cannot initialize"
|
2010-07-12 07:34:36 -06:00
|
|
|
_ = a
|
|
|
|
_ = b
|
|
|
|
}
|
|
|
|
|
|
|
|
func f2() {
|
|
|
|
var a, b int
|
2020-12-01 18:37:12 -07:00
|
|
|
a, b = f() // ERROR "assignment mismatch|does not match|cannot assign"
|
2010-07-12 07:34:36 -06:00
|
|
|
_ = a
|
|
|
|
_ = b
|
|
|
|
}
|
|
|
|
|
|
|
|
func f() int {
|
|
|
|
return 1;
|
|
|
|
}
|