mirror of
https://github.com/golang/go
synced 2024-11-22 08:34:40 -07: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
@ -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 New Issue
Block a user