aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00102.c
blob: ab47243579eda7e16a922ac46025828d7ed0f2cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
int
main()
{
	int x;
	
	x = 1;
	if ((x << 1) != 2)
		return 1;
	
	return 0;
}