summaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue7590.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue7590.go')
-rw-r--r--test/fixedbugs/issue7590.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/fixedbugs/issue7590.go b/test/fixedbugs/issue7590.go
new file mode 100644
index 000000000..e283832c3
--- /dev/null
+++ b/test/fixedbugs/issue7590.go
@@ -0,0 +1,21 @@
+// compile
+
+// 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.
+
+// Issue 7590: gccgo incorrectly traverses nested composite literals.
+
+package p
+
+type S struct {
+ F int
+}
+
+var M = map[string]S{
+ "a": { F: 1 },
+}
+
+var P = M["a"]
+
+var F = P.F