blob: 3b86e9753a9631842e21b8ca4de8f213908b8914 [file] [log] [blame]
package main
// BEGIN OMIT
type Foo struct {
i int
s string
}
var s = []Foo{
{6 * 9, "Question"},
{42, "Answer"},
}
var m = map[int]Foo{
7: {6 * 9, "Question"},
3: {42, "Answer"},
}
// END OMIT
func main() {}