aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00024.c
blob: 405ea868c65f2ff0e2915188e6e977b8679a0708 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
typedef struct { int x; int y; } s;

s v;

int
main()
{
	v.x = 1;
	v.y = 2;
	return 3 - v.x - v.y;
}