aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2010-07-12 06:34:36 -0700
committerIan Lance Taylor <iant@golang.org>2010-07-12 06:34:36 -0700
commite03a50dd113badd53037540599b65b359af86596 (patch)
tree432f149cb23d0f725902f18dc057dcc61e8610e2
parenta9a24d4d8a207edeff5009fc185faf77b43a90f7 (diff)
downloadgo-e03a50dd113badd53037540599b65b359af86596.tar.gz
go-e03a50dd113badd53037540599b65b359af86596.zip
Test case that gccgo fails (crashes rather than printing error).
R=rsc CC=Raj_, golang-dev https://golang.org/cl/1740044
-rw-r--r--test/fixedbugs/bug289.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/fixedbugs/bug289.go b/test/fixedbugs/bug289.go
new file mode 100644
index 0000000000..f7180ff04c
--- /dev/null
+++ b/test/fixedbugs/bug289.go
@@ -0,0 +1,26 @@
+// errchk $G $D/$F.go
+
+// 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 "mismatch|does not match"
+ _ = a
+ _ = b
+}
+
+func f2() {
+ var a, b int
+ a, b = f() // ERROR "mismatch|does not match"
+ _ = a
+ _ = b
+}
+
+func f() int {
+ return 1;
+}