mirror of
https://github.com/golang/go
synced 2024-11-05 18:36:08 +00:00
test: update bug086.go for current gccgo behaviour
bug086.go:14:1: error: missing return at end of function R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/12697043
This commit is contained in:
parent
ef86beb445
commit
58845656e8
1 changed files with 2 additions and 2 deletions
|
@ -6,12 +6,12 @@
|
|||
|
||||
package main
|
||||
|
||||
func f() int { // GCCGO_ERROR "control"
|
||||
func f() int {
|
||||
if false {
|
||||
return 0;
|
||||
}
|
||||
// we should not be able to return successfully w/o a return statement
|
||||
} // GC_ERROR "return"
|
||||
} // ERROR "return"
|
||||
|
||||
func main() {
|
||||
print(f(), "\n");
|
||||
|
|
Loading…
Reference in a new issue