1package fillstruct
2
3type StructB struct {
4	StructC
5}
6
7type StructC struct {
8	unexportedInt int
9}
10
11func nested() {
12	c := StructB{
13		StructC: StructC{}, //@suggestedfix("}", "refactor.rewrite")
14	}
15}
16