extern int __VERIFIER_nondet_int(void); int foo(int i){ i = 0; while (i < 100) { if (i < 50) { i = 51; } else { i = 49; } } return 0; }