solidity/test/libsolidity/smtCheckerTests/try_catch/try_2.sol
2023-03-09 14:59:32 +01:00

22 lines
502 B
Solidity

contract C {
int x;
function g() public {
x = 42;
}
function f() public {
x = 0;
try this.g() {
assert(x == 42); // should hold
} catch (bytes memory s) {
assert(x == 0); // should hold
}
}
}
// ====
// SMTEngine: all
// ----
// Warning 5667: (155-169): Unused try/catch parameter. Remove or comment out the variable name to silence this warning.
// Info 1391: CHC: 2 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.