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