Commit 32d00e6c authored by Robert Griesemer's avatar Robert Griesemer

- added missing ';' according to new rules

(no effect on the test, but now parseable)

R=r
OCL=16936
CL=16936
parent 0adc1db7
......@@ -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
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment