summaryrefslogtreecommitdiff
path: root/test/fixedbugs
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2014-07-19 01:12:42 -0700
committerIan Lance Taylor <iant@golang.org>2014-07-19 01:12:42 -0700
commitddc392a1feb7a679eac51b3087536fb9a423ba73 (patch)
treee37bd03b64c24b2eafaf301b3f0b4511c1c5cfac /test/fixedbugs
parent9e58256ca58ab5a844200b573853fcf0d7ea0eb1 (diff)
downloadgo-ddc392a1feb7a679eac51b3087536fb9a423ba73.tar.gz
test: add some tests for mismatches between call results and uses
LGTM=dvyukov R=golang-codereviews, dvyukov CC=golang-codereviews https://codereview.appspot.com/111360045
Diffstat (limited to 'test/fixedbugs')
-rw-r--r--test/fixedbugs/bug487.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/fixedbugs/bug487.go b/test/fixedbugs/bug487.go
new file mode 100644
index 000000000..eb1ad5e57
--- /dev/null
+++ b/test/fixedbugs/bug487.go
@@ -0,0 +1,24 @@
+// errorcheck
+
+// Copyright 2014 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.
+
+// The gccgo compiler did not reliably report mismatches between the
+// number of function results and the number of expected results.
+
+package p
+
+func G() (int, int, int) {
+ return 0, 0, 0
+}
+
+func F() {
+ a, b := G() // ERROR "mismatch"
+ a, b = G() // ERROR "mismatch"
+ _, _ = a, b
+}
+
+func H() (int, int) {
+ return G() // ERROR "too many|mismatch"
+}