From: Robert Griesemer Date: Fri, 10 Oct 2008 23:18:01 +0000 (-0700) Subject: - added missing ';' according to new rules X-Git-Tag: weekly.2009-11-06~3006 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=32d00e6cc6afa43c980329f8705efbb1d7f99f10;p=gostls13.git - added missing ';' according to new rules (no effect on the test, but now parseable) R=r OCL=16936 CL=16936 --- diff --git a/test/bugs/bug107.go b/test/bugs/bug107.go index d08c440459..80fa966479 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 }