summaryrefslogtreecommitdiff
path: root/support/regression/qct/0009-expr.c
blob: f9a3509fd3e4bc497ea5a91d8355142e93720905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

int
main()
{
	int x;
	
	x = 1;
	x = x * 10;
	x = x / 2;
	x = x % 3;
	return x - 2;
}