Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / unused / testdata / src / exported_fields_main / 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 }