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

30 lines
613 B
Solidity
Raw Normal View History

2021-01-06 14:55:26 +00:00
abstract contract D {
function d() external virtual;
}
contract C {
int x;
D d;
function set(int n) public {
x = n;
}
function f() public {
x = 0;
try d.d() {
2021-11-23 17:54:44 +00:00
//assert(x == 0); // should fail, x can be anything here
2021-01-06 14:55:26 +00:00
} catch {
assert(x == 0); // should hold, all changes to x has been reverted
assert(x == 1); // should fail
}
}
}
2021-01-11 12:35:12 +00:00
// ====
2021-03-31 15:11:54 +00:00
// SMTEngine: all
2021-01-11 12:35:12 +00:00
// SMTIgnoreCex: yes
2021-01-06 14:55:26 +00:00
// ----
2021-11-23 17:54:44 +00:00
// Warning 6328: (320-334): 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.