/* TAGS: c sym min */ /* VERIFY_OPTS: --symbolic */ #include #include bool __VERIFIER_nondet_bool(); int main() { bool a = __VERIFIER_nondet_bool(); bool b = !a; assert( a == b ); /* ERROR */ }