summaryrefslogtreecommitdiff
path: root/tests/sources/0504_loop_rel.c
blob: 05804af71e9724ff75aab81b5b75a76c306796d4 (plain) (blame)
1
2
3
4
5
6
7
int N = rand(0,1000);
int x = 0;
while (x < N) {
  print(x,N);
  x = x + 1;
}
assert(x==N);