2012-02-16 23:49:59 -05:00
|
|
|
// errorcheck
|
2011-07-27 14:45:27 -04:00
|
|
|
|
2016-04-10 14:32:26 -07:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
2011-07-27 14:45:27 -04:00
|
|
|
// 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 (
|
2020-12-09 20:14:07 -08:00
|
|
|
a = iota // ERROR "undefined: iota|iota is only defined in const|cannot use iota outside constant declaration"
|
|
|
|
b = iota // ERROR "undefined: iota|iota is only defined in const|cannot use iota outside constant declaration"
|
|
|
|
c = iota // ERROR "undefined: iota|iota is only defined in const|cannot use iota outside constant declaration"
|
2011-07-27 14:45:27 -04:00
|
|
|
)
|