aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/13.c
blob: d912d709eac207999410a886ac488299cc5aa5e4 (plain)
1
2
3
4
5
6
7
8
int func(int x, int y) {
    int i;
    for(i = 0; i < 5; ++i) {
	int z = 0;
	z = x + y + i;
	return x + y;
    }
}