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