blob: 953fd66708f0903dad816aaacccd09e5af8d5579 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
struct bbb;
struct ccc {
int member_three;
};
struct aaa
{
struct bbb *member_one;
struct ccc *member_two;
};
struct aaa var1;
struct ccc var3;
int
main (void)
{
return 0;
}
|