mirror of
https://github.com/golang/go
synced 2024-11-13 15:30:22 -07:00
896f0c61c8
Fixes #2295. R=ken2 CC=golang-dev https://golang.org/cl/5655057
11 lines
301 B
Go
11 lines
301 B
Go
// errchk $G $D/$F.go
|
|
|
|
// Copyright 2012 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.
|
|
|
|
package p
|
|
|
|
func f(i int) int { return i }
|
|
|
|
var i = func() int {a := f(i); return a}() // ERROR "initialization loop"
|