aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/stub/stub_function_return.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/stub/stub_function_return.go')
-rw-r--r--internal/lsp/testdata/stub/stub_function_return.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/internal/lsp/testdata/stub/stub_function_return.go b/internal/lsp/testdata/stub/stub_function_return.go
deleted file mode 100644
index bbf05885a..000000000
--- a/internal/lsp/testdata/stub/stub_function_return.go
+++ /dev/null
@@ -1,11 +0,0 @@
-package stub
-
-import (
- "io"
-)
-
-func newCloser() io.Closer {
- return closer{} //@suggestedfix("c", "refactor.rewrite")
-}
-
-type closer struct{}