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