go/internal/lsp/testdata/fillstruct/fill_struct_spaces.go.golden

14 lines
211 B
Plaintext

-- suggestedfix_fill_struct_spaces_8_15 --
package fillstruct
type StructD struct {
ExportedIntField int
}
func spaces() {
d := StructD{
ExportedIntField: 0,
} //@suggestedfix("}", "refactor.rewrite")
}