1 struct anonymous_nest
{
14 struct anonymous_child
{
27 struct anonymous_grandchild
{
40 int processor_nest (struct anonymous_nest
*n
)
42 return n
->foo
.d
+ n
->b
; // Set breakpoint 0 here.
45 int processor_child (struct anonymous_child
*c
)
47 return c
->foo
.d
+ c
->grandchild
.b
; // Set breakpoint 1 here.
50 int processor_grandchild (struct anonymous_grandchild
*g
)
52 return g
->child
.foo
.d
+ g
->child
.b
;
69 struct anonymous_nest n
= { 0, 2, 0, 4 };
70 struct anonymous_child c
= { 0, 2, 0, 4 };
71 struct anonymous_grandchild g
= { 0, 2, 0, 4 };
77 processor_grandchild(&g
); // Set breakpoint 2 here.