aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/stub/stub_pointer.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/stub/stub_pointer.go')
-rw-r--r--internal/lsp/testdata/stub/stub_pointer.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/internal/lsp/testdata/stub/stub_pointer.go b/internal/lsp/testdata/stub/stub_pointer.go
deleted file mode 100644
index 2b3681b83..000000000
--- a/internal/lsp/testdata/stub/stub_pointer.go
+++ /dev/null
@@ -1,9 +0,0 @@
-package stub
-
-import "io"
-
-func getReaderFrom() io.ReaderFrom {
- return &pointerImpl{} //@suggestedfix("&", "refactor.rewrite")
-}
-
-type pointerImpl struct{}