solidity/test/libsolidity/smtCheckerTests/try_catch/try_nested_2.sol
2021-03-30 17:55:21 +02:00

23 lines
568 B
Solidity

pragma experimental SMTChecker;
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
}
}
// ----
// Warning 6328: (374-394): CHC: Assertion violation happens here.\nCounterexample:\n\nchoice = 3\n\nTransaction trace:\nC.constructor()\nC.f()