// S : tags error c sym $TAGS // S : expect --result error --location-comment ERROR // S : cc -o test.bc $CC_OPT $file // S : verify --symbolic --solver $solver --sequential -o nofail:malloc $V_OPT test.bc extern void __VERIFIER_error() __attribute__ ((__noreturn__)); extern void __VERIFIER_assert(int); int main(void) { unsigned int x = 0; unsigned int y = 1; while (x < 6) { x++; y *= 2; } __VERIFIER_assert(x != 6); /* ERROR */ }