aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00106.c
blob: 3bc029602ed96bd060152ce3293def0279e00db8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
struct S1 { int x; };
struct S2 { struct S1 s1; };

int
main()
{
	struct S2 s2;
	s2.s1.x = 1;
	return 0;
}