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