aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/fillstruct/fill_struct_spaces.go.golden
blob: 0d755334c99636c9173fb2a09fa26902ab68343d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- suggestedfix_fill_struct_spaces_8_15 --
package fillstruct

type StructD struct {
	ExportedIntField int
}

func spaces() {
	d := StructD{
		ExportedIntField: 0,
	} //@suggestedfix("}", "refactor.rewrite")
}