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