blob: b5d2337fd9d2a51ba2b85a0497a731db838b1deb [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")
}