solidity/test/libsolidity/smtCheckerTests/try_catch/try_multiple_catch_clauses.sol

28 lines
681 B
Solidity
Raw Normal View History

2021-01-06 14:55:26 +00:00
contract C {
int x;
function g() public {
x = 42;
}
function f() public {
x = 1;
bool success = false;
try this.g() {
success = true;
assert(x == 42); // should hold
} catch Error (string memory /*reason*/) {
assert(x == 1); // should hold
} catch (bytes memory /*reason*/) {
assert(x == 1); // should hold
}
assert((success && x == 42) || (!success && x == 1)); // should hold
assert(success); // can fail
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
2021-01-06 14:55:26 +00:00
// ----
2023-02-09 16:07:13 +00:00
// Warning 6328: (415-430): CHC: Assertion violation happens here.
// Info 1391: CHC: 4 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.