blob: c902ee7f12bc7d33d666ede657baf4babdfba92b [file] [log] [blame]
-- suggestedfix_fill_struct_nested_13_20 --
package fillstruct
type StructB struct {
StructC
}
type StructC struct {
unexportedInt int
}
func nested() {
c := StructB{
StructC: StructC{
unexportedInt: 0,
}, //@suggestedfix("}", "refactor.rewrite", "Fill")
}
}