/* * Commandline example: * civl verify assert1.cvl */ #include #include void main(){ bool b= true; int x = 1, y = 2; assert(x < y); assert(b); assert(1); }