aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/test/in/08.c
blob: 3d8e98369eb868feffaf3378388ca29c4dbb4be6 (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;
}