aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/stub/stub_multi_var.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/stub/stub_multi_var.go')
-rw-r--r--internal/lsp/testdata/stub/stub_multi_var.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/internal/lsp/testdata/stub/stub_multi_var.go b/internal/lsp/testdata/stub/stub_multi_var.go
deleted file mode 100644
index 4276b7994..000000000
--- a/internal/lsp/testdata/stub/stub_multi_var.go
+++ /dev/null
@@ -1,11 +0,0 @@
-package stub
-
-import "io"
-
-// This test ensures that a variable declaration that
-// has multiple values on the same line can still be
-// analyzed correctly to target the interface implementation
-// diagnostic.
-var one, two, three io.Reader = nil, &multiVar{}, nil //@suggestedfix("&", "refactor.rewrite")
-
-type multiVar struct{}