Files
circ/examples/C/smt/assert_fails.c
Edward Chen c06e938c41 Introducing SV Comp-style tests for C Frontend (#140)
Integrating SV comp tests for C Frontend

---------

Co-authored-by: Alex Ozdemir <aozdemir@hmc.edu>
2023-01-29 21:30:55 -05:00

7 lines
123 B
C

int main(
__attribute__((private(0))) int a,
__attribute__((private(1))) int b)
{
__VERIFIER_assert(a == b);
}