summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug482.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2013-12-10 10:47:30 -0800
committerIan Lance Taylor <iant@golang.org>2013-12-10 10:47:30 -0800
commita62ff3e2cc090ed5de48a95e66f088c281c08916 (patch)
treed8fdd4d830a55e4bf8dc2e7ff6171ed11ddf4db9 /test/fixedbugs/bug482.go
parent23988b9ff4b641dc49e4d1e01837d71dfba941a8 (diff)
downloadgo-a62ff3e2cc090ed5de48a95e66f088c281c08916.tar.gz
test: add some test cases that were miscompiled by gccgo
R=golang-dev, r CC=golang-dev https://codereview.appspot.com/40310043
Diffstat (limited to 'test/fixedbugs/bug482.go')
-rw-r--r--test/fixedbugs/bug482.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/fixedbugs/bug482.go b/test/fixedbugs/bug482.go
new file mode 100644
index 000000000..10c48287d
--- /dev/null
+++ b/test/fixedbugs/bug482.go
@@ -0,0 +1,20 @@
+// compile
+
+// Copyright 2013 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.
+
+// Using the same name for a field in a composite literal and for a
+// global variable that depends on the variable being initialized
+// caused gccgo to erroneously report "variable initializer refers to
+// itself".
+
+package p
+
+type S struct {
+ F int
+}
+
+var V = S{F: 1}
+
+var F = V.F