.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.1.1 / staticcheck / testdata / src / CheckEmptyBranch / CheckEmptyBranch_test.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.1.1/staticcheck/testdata/src/CheckEmptyBranch/CheckEmptyBranch_test.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.1.1/staticcheck/testdata/src/CheckEmptyBranch/CheckEmptyBranch_test.go
new file mode 100644 (file)
index 0000000..472ab5c
--- /dev/null
@@ -0,0 +1,15 @@
+package pkg
+
+import "testing"
+
+func TestFoo(t *testing.T) {
+       if true { // want `empty branch`
+               // TODO
+       }
+}
+
+func ExampleFoo() {
+       if true {
+               // TODO
+       }
+}