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