aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/fillstruct/fill_struct_partial.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/fillstruct/fill_struct_partial.go')
-rw-r--r--internal/lsp/testdata/fillstruct/fill_struct_partial.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/internal/lsp/testdata/fillstruct/fill_struct_partial.go b/internal/lsp/testdata/fillstruct/fill_struct_partial.go
deleted file mode 100644
index 97b517dcd..000000000
--- a/internal/lsp/testdata/fillstruct/fill_struct_partial.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package fillstruct
-
-type StructPartialA struct {
- PrefilledInt int
- UnfilledInt int
- StructPartialB
-}
-
-type StructPartialB struct {
- PrefilledInt int
- UnfilledInt int
-}
-
-func fill() {
- a := StructPartialA{
- PrefilledInt: 5,
- } //@suggestedfix("}", "refactor.rewrite")
- b := StructPartialB{
- /* this comment should disappear */
- PrefilledInt: 7, // This comment should be blown away.
- /* As should
- this one */
- } //@suggestedfix("}", "refactor.rewrite")
-}