summaryrefslogtreecommitdiff
path: root/tests/sources/0505_loop_rel2.c
blob: e33593278368db9e68416946e0598a8d07a09fe1 (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 + rand(0,3);
}
assert(x>=N && x<N+3);