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
diff --git a/.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 b/.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
new file mode 100644 (file)
index 0000000..ffb99d9
--- /dev/null
@@ -0,0 +1,14 @@
+package main
+
+type t1 struct {
+       F1 int
+}
+
+type T2 struct {
+       F2 int
+}
+
+func init() {
+       _ = t1{}
+       _ = T2{}
+}