]> Cypherpunks repositories - gostls13.git/commitdiff
Test case that gccgo fails (crashes rather than printing error).
authorIan Lance Taylor <iant@golang.org>
Mon, 12 Jul 2010 13:34:36 +0000 (06:34 -0700)
committerIan Lance Taylor <iant@golang.org>
Mon, 12 Jul 2010 13:34:36 +0000 (06:34 -0700)
R=rsc
CC=Raj_, golang-dev
https://golang.org/cl/1740044

test/fixedbugs/bug289.go [new file with mode: 0644]

diff --git a/test/fixedbugs/bug289.go b/test/fixedbugs/bug289.go
new file mode 100644 (file)
index 0000000..f7180ff
--- /dev/null
@@ -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;
+}