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

22 lines
508 B
Solidity

pragma experimental SMTChecker;
contract C {
int public x;
function f() public view {
int y = 42;
bool success = false;
try this.x() returns (int v) {
y = v;
try this.x() returns (int w) {
success = true;
y = w;
}
catch {}
} catch {}
assert(!success || y == x); // should hold
assert(y == 42); // should fail
}
}
// ----
// Warning 6328: (312-327): CHC: Assertion violation happens here.\nCounterexample:\nx = 0\n\nTransaction trace:\nC.constructor()\nState: x = 0\nC.f()