aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/IfElse.c
blob: 2d49e2c9eeb306aea26bdfc8f92bcb9fbc12e70b (plain)
1
2
3
4
5
6
7
8
int f(int a)
{
    if(a == 2) {
	return 3;
    } else {
	return 2;
    }
}