summaryrefslogtreecommitdiff
path: root/support/regression/qct/0079-cond.c
blob: 1b1a3292cf677432e1c9033d54f6a0ae88736d3d (plain)
1
2
3
4
5
6
7
8
9
10

int
main()
{
	if(0 ? 1 : 0)
		return 1;
	if(1 ? 0 : 1)
		return 2;
	return 0;
}