ffb99d990dac5af2cb1dfded48b177122374b2df
[dotfiles/.git] / exported_fields_main.go
1 package main
2
3 type t1 struct {
4         F1 int
5 }
6
7 type T2 struct {
8         F2 int
9 }
10
11 func init() {
12         _ = t1{}
13         _ = T2{}
14 }