.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.1.1 / analysis / facts / testdata / src / Deprecated / Deprecated.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.1.1/analysis/facts/testdata/src/Deprecated/Deprecated.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.1.1/analysis/facts/testdata/src/Deprecated/Deprecated.go
new file mode 100644 (file)
index 0000000..e6dedcd
--- /dev/null
@@ -0,0 +1,13 @@
+package pkg
+
+// Deprecated: Don't use this.
+func fn2() { // want fn2:`Deprecated: Don't use this\.`
+}
+
+// This is a function.
+//
+// Deprecated: Don't use this.
+//
+// Here is how you might use it instead.
+func fn3() { // want fn3:`Deprecated: Don't use this\.`
+}