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

26 lines
637 B
Solidity
Raw Normal View History

contract C {
function g() public pure returns (uint, uint) {
}
function f() public view {
uint choice = 42;
try this.g() returns (uint, uint) {
choice = 10;
try this.g() returns (uint, uint) {
choice = 1;
} catch {
choice = 2;
}
} catch {
choice = 3;
}
assert(choice >= 1 && choice <= 3); // should hold
assert(choice == 42); // should fail
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
2022-05-04 14:29:50 +00:00
// SMTIgnoreCex: yes
// ----
2022-05-04 14:29:50 +00:00
// Warning 6328: (342-362): CHC: Assertion violation happens here.
2023-02-09 16:07:13 +00:00
// Info 1391: CHC: 1 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.