.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.1.0 / cmd / guru / testdata / src / what-json / main.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.1.0/cmd/guru/testdata/src/what-json/main.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/golang.org/x/tools@v0.1.0/cmd/guru/testdata/src/what-json/main.go
new file mode 100644 (file)
index 0000000..27177ff
--- /dev/null
@@ -0,0 +1,14 @@
+package main
+
+import "lib"
+
+// Tests of 'what' queries, -format=json.
+// See go.tools/guru/guru_test.go for explanation.
+// See what-json.golden for expected query results.
+
+func main() {
+       f() // @what call "f"
+}
+
+var _ lib.Var // @what pkg "lib"
+type _ lib.T