diff options
Diffstat (limited to 'test/fixedbugs/bug289.go')
-rw-r--r-- | test/fixedbugs/bug289.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/fixedbugs/bug289.go b/test/fixedbugs/bug289.go new file mode 100644 index 0000000..868029a --- /dev/null +++ b/test/fixedbugs/bug289.go @@ -0,0 +1,24 @@ +// errorcheck + +// Copyright 2010 The Go Authors. All rights reserved. +// 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() { + a, b := f() // ERROR "assignment mismatch|does not match|cannot initialize" + _, _ = a, b +} + +func f2() { + var a, b int + a, b = f() // ERROR "assignment mismatch|does not match|cannot assign" + _, _ = a, b +} + +func f() int { + return 1 +} |