mirror of https://github.com/golang/go.git
- 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:
parent
0adc1db757
commit
32d00e6cc6
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue