From: Ian Lance Taylor Date: Mon, 12 Jul 2010 13:34:36 +0000 (-0700) Subject: Test case that gccgo fails (crashes rather than printing error). X-Git-Tag: weekly.2010-07-14~34 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e03a50dd113badd53037540599b65b359af86596;p=gostls13.git Test case that gccgo fails (crashes rather than printing error). R=rsc CC=Raj_, golang-dev https://golang.org/cl/1740044 --- 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; +}