mirror of
https://github.com/golang/go
synced 2024-11-05 18:36:08 +00:00
aaabe3d849
Also add relevant test. Fixes #13343. Change-Id: Ib1e65af1d643d501de89adee3618eddbf6c69c9e Reviewed-on: https://go-review.googlesource.com/18159 Reviewed-by: Russ Cox <rsc@golang.org> Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
18 lines
325 B
Go
18 lines
325 B
Go
// errorcheck
|
|
|
|
// Copyright 2015 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 main
|
|
|
|
var (
|
|
a, b = f() // ERROR "initialization loop|depends upon itself"
|
|
c = b
|
|
)
|
|
|
|
func f() (int, int) {
|
|
return c, c
|
|
}
|
|
|
|
func main() {}
|