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