aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00042.c
blob: 8b2b209ce3f451dee34aef7f805e814e0aa2c164 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
int
main()
{
	union { int a; int b; } u;
	u.a = 1;
	u.b = 3;
	
	if (u.a != 3 || u.b != 3)
		return 1;
	return 0;
}