summaryrefslogtreecommitdiff
path: root/tests/sources/0509_loop_nested.c
blob: 54d5be6571d718f63a3691b887951dd5a2416d93 (plain) (blame)
1
2
3
4
5
6
7
8
9
int i=0, j=0;

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