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