OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [go.test/] [test/] [fixedbugs/] [bug289.go] - Blame information for rev 700

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 700 jeremybenn
// 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
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.