aboutsummaryrefslogtreecommitdiff
path: root/test/conditional.c
blob: 1c03ee5e111dd5aeb3cde23b0e4b44ca076c0cb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
int i;
float f;
void *p;
int main(void) {
	if (i ? 1 : 0)
		return 1;
	if (f ? 1 : 0)
		return 1;
	if (p ? 1 : 0)
		return 1;
}