blob: 5a30979838991629fb2c54ca169e1ab83007019f [file] [log] [blame]
Colin Cross7bb052a2015-02-03 12:59:37 -08001// errorcheck
2
Dan Willemsen0c157092016-07-08 13:57:52 -07003// Copyright 2010 The Go Authors. All rights reserved.
Colin Cross7bb052a2015-02-03 12:59:37 -08004// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// https://code.google.com/p/gofrontend/issues/detail?id=1
8
9package main
10
11func f1() {
12 a, b := f() // ERROR "mismatch|does not match"
13 _ = a
14 _ = b
15}
16
17func f2() {
18 var a, b int
19 a, b = f() // ERROR "mismatch|does not match"
20 _ = a
21 _ = b
22}
23
24func f() int {
25 return 1;
26}