aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/11.c
blob: 2d8cac61b4fb505755d1a915468bc61f038cb842 (plain)
1
2
3
4
5
6
7
8
9
10
int f() {
    int x = 0;
    
    while(x < 5) {
	int y = 0;
	x++;
    }
    
    return x;
}