blob: 7cc9ac23d023f663beed1306ff65e855483f0658 [file] [log] [blame]
-- suggestedfix_fill_struct_anon_13_18 --
package fillstruct
type StructAnon struct {
a struct{}
b map[string]interface{}
c map[string]struct {
d int
e bool
}
}
func fill() {
_ := StructAnon{
a: struct{}{},
b: map[string]interface{}{},
c: map[string]struct{d int; e bool}{},
} //@suggestedfix("}", "refactor.rewrite", "Fill")
}