aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00017.c
blob: af4e2c287107fcb1c7cdf3d5592bc18dcffddd90 (plain) (blame)
1
2
3
4
5
6
7
8
9
int
main()
{
	struct { int x; int y; } s;
	
	s.x = 3;
	s.y = 5;
	return s.y - s.x - 2; 
}