aboutsummaryrefslogtreecommitdiff
path: root/gopls/internal/lsp/testdata/fillstruct/fill_struct_spaces.go
diff options
context:
space:
mode:
Diffstat (limited to 'gopls/internal/lsp/testdata/fillstruct/fill_struct_spaces.go')
-rw-r--r--gopls/internal/lsp/testdata/fillstruct/fill_struct_spaces.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/gopls/internal/lsp/testdata/fillstruct/fill_struct_spaces.go b/gopls/internal/lsp/testdata/fillstruct/fill_struct_spaces.go
new file mode 100644
index 000000000..6a468cd54
--- /dev/null
+++ b/gopls/internal/lsp/testdata/fillstruct/fill_struct_spaces.go
@@ -0,0 +1,9 @@
+package fillstruct
+
+type StructD struct {
+ ExportedIntField int
+}
+
+func spaces() {
+ d := StructD{} //@suggestedfix("}", "refactor.rewrite", "Fill")
+}