aboutsummaryrefslogtreecommitdiff
path: root/gopls/internal/lsp/testdata/stub/other/other.go
diff options
context:
space:
mode:
Diffstat (limited to 'gopls/internal/lsp/testdata/stub/other/other.go')
-rw-r--r--gopls/internal/lsp/testdata/stub/other/other.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/gopls/internal/lsp/testdata/stub/other/other.go b/gopls/internal/lsp/testdata/stub/other/other.go
new file mode 100644
index 000000000..ba3c1747a
--- /dev/null
+++ b/gopls/internal/lsp/testdata/stub/other/other.go
@@ -0,0 +1,10 @@
+package other
+
+import (
+ "bytes"
+ renamed_context "context"
+)
+
+type Interface interface {
+ Get(renamed_context.Context) *bytes.Buffer
+}