diff options
-rw-r--r-- | test/bugs/bug107.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bugs/bug107.go b/test/bugs/bug107.go index d08c44045..80fa96647 100644 --- a/test/bugs/bug107.go +++ b/test/bugs/bug107.go @@ -9,6 +9,6 @@ import os "os" func f() (os int) { // In the next line "os" should refer to the result variable, not // to the package. - v := os.Open("", 0, 0) // ERROR "undefined" + v := os.Open("", 0, 0); // ERROR "undefined" return 0 } |