aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/test/in/10.c
blob: 37a6ecc4c4b73b910b49440ee7a7a2174c2a9d39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
int f()
{}

int g = 2;

int x(int y) {
    int z = 3;
    
    if(y < z || g < z) {
	int r;
	++y;
    } else if(y == z) {
	int f;
	--y;
    } else return y;
    
    return g;
}