github.com/v2fly/tools@v0.100.0/internal/lsp/testdata/fillstruct/fill_struct_spaces.go.golden (about)

     1  -- suggestedfix_fill_struct_spaces_8_15 --
     2  package fillstruct
     3  
     4  type StructD struct {
     5  	ExportedIntField int
     6  }
     7  
     8  func spaces() {
     9  	d := StructD{
    10  		ExportedIntField: 0,
    11  	} //@suggestedfix("}", "refactor.rewrite")
    12  }
    13