summaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue6703r.go
diff options
context:
space:
mode:
authorChris Manghane <cmang@golang.org>2014-10-14 19:12:10 -0700
committerChris Manghane <cmang@golang.org>2014-10-14 19:12:10 -0700
commit9ddeb99a986ff9c6dacc218359d9aa09111cbfa6 (patch)
tree34b1ac461a509bd2e77986029b23e0bd0bb30e60 /test/fixedbugs/issue6703r.go
parent1e77469a67f3a9905a43aaa0f2c189c7bcd1e558 (diff)
downloadgo-9ddeb99a986ff9c6dacc218359d9aa09111cbfa6.tar.gz
cmd/gc: check for initialization cycles in method values
Fixes issue 7960. LGTM=rsc R=rsc CC=golang-codereviews, gri https://codereview.appspot.com/159800045
Diffstat (limited to 'test/fixedbugs/issue6703r.go')
-rw-r--r--test/fixedbugs/issue6703r.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/fixedbugs/issue6703r.go b/test/fixedbugs/issue6703r.go
new file mode 100644
index 000000000..669846241
--- /dev/null
+++ b/test/fixedbugs/issue6703r.go
@@ -0,0 +1,28 @@
+// errorcheck
+
+// Copyright 2014 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.
+
+// Check for cycles in the method call of an embedded struct returned
+// from a function call.
+
+package funcembedmethcall
+
+type T int
+
+func (T) m() int {
+ _ = x
+ return 0
+}
+
+func g() E {
+ return E{0}
+}
+
+type E struct{ T }
+
+var (
+ e E
+ x = g().m() // ERROR "initialization loop|depends upon itself"
+)