.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.1.1 / unused / testdata / src / exported_fields_main / exported_fields_main.go
1 package main
2
3 type t1 struct { // used
4         F1 int // used
5 }
6
7 type T2 struct { // used
8         F2 int // used
9 }
10
11 func init() { // used
12         _ = t1{}
13         _ = T2{}
14 }