mirror of
https://github.com/golang/go.git
synced 2026-04-02 01:10:27 +09: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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user