blob: 164158ff862e280cd0620314e51f255135921671 [file] [log] [blame]
Andrew Gerrand58ee3fc2015-08-21 11:46:56 +01001// +build ignore
2
Andrew Gerrand44522de2015-08-21 11:46:56 +01003package main
4
5// BEGIN1 OMIT
6var s = []struct {
7 i int
8 s string
9}{
10 struct {
11 i int
12 s string
13 }{6 * 9, "Question"},
14 struct {
15 i int
16 s string
17 }{42, "Answer"},
18}
19
20var t = []struct {
21 i int
22 s string
23}{
24 {6 * 9, "Question"},
25 {42, "Answer"},
26}
27
28// END OMIT
29
30func main() {}