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