summaryrefslogtreecommitdiff
path: root/tests/sources/0510_loop_nested2.c
blob: 90c52ecfb38240a900f56616c1615cd2e2545849 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
int i,j;

i = 0;
while (i < 1000) {
  j = 0;
  while (j < i) {
    j = j + 1;
  }
  i = i + 1;
}