OSDN Git Service

Add Go frontend, libgo library, and Go testsuite.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / go.test / test / fixedbugs / bug289.go
1 // errchk $G $D/$F.go
2
3 // Copyright 2010 The Go Authors.  All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
6
7 // https://code.google.com/p/gofrontend/issues/detail?id=1
8
9 package main
10
11 func f1() {
12         a, b := f()     // ERROR "mismatch|does not match"
13         _ = a
14         _ = b
15 }
16
17 func f2() {
18         var a, b int
19         a, b = f()      // ERROR "mismatch|does not match"
20         _ = a
21         _ = b
22 }
23
24 func f() int {
25         return 1;
26 }