Writing Invariants
Echidna Support
function echidna_test() public {
assert(false);
}Scribble Support
contract Foo {
/// #if_succeeds {:msg "P1"} y == x + 2;
function inc(uint x) public pure returns (uint y) {
return x+1;
}
}bug() Support
bug() SupportLast updated