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