aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/test/in/08.c
blob: dfac1e544c45dd9d7a9091804504b9f8bdfac26d (plain)
1
2
3
4
5
6
7
8
9
10
int func(int a, int b) {
    int c = 0;
    if(a == b) {
        int d;
    } else if(a == d) {
        int e;
        return d;
    }
    return c;
}