From: Robert Griesemer Date: Mon, 20 Apr 2009 22:23:21 +0000 (-0700) Subject: missing '}' (found by pretty) X-Git-Tag: weekly.2009-11-06~1792 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0dd5be48aa3f532327dabc369427de2f5b303085;p=gostls13.git missing '}' (found by pretty) R=r DELTA=1 (1 added, 0 deleted, 0 changed) OCL=27633 CL=27639 --- diff --git a/test/declbad.go b/test/declbad.go index 8115b2cf6e..755450788e 100644 --- a/test/declbad.go +++ b/test/declbad.go @@ -17,6 +17,7 @@ func main() { // simple redeclaration i := f1(); i := f1(); // ERROR "redeclared" + } { // change of type for f i, f, s := f3();