2012-02-16 21:49:59 -07:00
|
|
|
// errorcheck
|
2011-07-27 12:45:27 -06:00
|
|
|
|
|
|
|
// 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 (
|
2011-09-20 17:47:17 -06:00
|
|
|
a = iota // ERROR "undefined: iota|iota is only defined in const"
|
|
|
|
b = iota // ERROR "undefined: iota|iota is only defined in const"
|
|
|
|
c = iota // ERROR "undefined: iota|iota is only defined in const"
|
2011-07-27 12:45:27 -06:00
|
|
|
)
|