From: Russ Cox Date: Wed, 27 Jul 2011 18:45:27 +0000 (-0400) Subject: gc: iota outside const X-Git-Tag: weekly.2011-07-29~41 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=dec8009fe871d4bd108451306bd15fafb7cf6726;p=gostls13.git gc: iota outside const Fixes #1662. R=ken2 CC=golang-dev https://golang.org/cl/4828045 --- diff --git a/src/cmd/gc/lex.c b/src/cmd/gc/lex.c index 21ac779a9f..6845a8ecd6 100644 --- a/src/cmd/gc/lex.c +++ b/src/cmd/gc/lex.c @@ -218,6 +218,7 @@ main(int argc, char *argv[]) curio.nlsemi = 0; block = 1; + iota = -1000000; yyparse(); if(nsyntaxerrors != 0) diff --git a/test/fixedbugs/bug362.go b/test/fixedbugs/bug362.go new file mode 100644 index 0000000000..7912091030 --- /dev/null +++ b/test/fixedbugs/bug362.go @@ -0,0 +1,16 @@ +// errchk $G $D/$F.go + +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// issue 1662 +// iota inside var + +package main + +var ( + a = iota // ERROR "undefined: iota" + b = iota // ERROR "undefined: iota" + c = iota // ERROR "undefined: iota" +)