aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/stub/stub_err.go.golden
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/stub/stub_err.go.golden')
-rw-r--r--internal/lsp/testdata/stub/stub_err.go.golden14
1 files changed, 0 insertions, 14 deletions
diff --git a/internal/lsp/testdata/stub/stub_err.go.golden b/internal/lsp/testdata/stub/stub_err.go.golden
deleted file mode 100644
index 717aed862..000000000
--- a/internal/lsp/testdata/stub/stub_err.go.golden
+++ /dev/null
@@ -1,14 +0,0 @@
--- suggestedfix_stub_err_4_17 --
-package stub
-
-func main() {
- var br error = &customErr{} //@suggestedfix("&", "refactor.rewrite")
-}
-
-type customErr struct{}
-
-// Error implements error
-func (*customErr) Error() string {
- panic("unimplemented")
-}
-