- added missing ';' according to new rules

(no effect on the test, but now parseable)

R=r
OCL=16936
CL=16936
This commit is contained in:
Robert Griesemer 2008-10-10 16:18:01 -07:00
parent 0adc1db757
commit 32d00e6cc6
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,6 @@ import os "os"
func f() (os int) { func f() (os int) {
// In the next line "os" should refer to the result variable, not // In the next line "os" should refer to the result variable, not
// to the package. // to the package.
v := os.Open("", 0, 0) // ERROR "undefined" v := os.Open("", 0, 0); // ERROR "undefined"
return 0 return 0
} }