From 32d00e6cc6afa43c980329f8705efbb1d7f99f10 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Fri, 10 Oct 2008 16:18:01 -0700 Subject: [PATCH] - added missing ';' according to new rules (no effect on the test, but now parseable) R=r OCL=16936 CL=16936 --- test/bugs/bug107.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.48.1