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 {
|
|
|
|
require(n < 100);
|
|
|
|
x = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
function f() public {
|
|
|
|
x = 0;
|
|
|
|
try d.d() {
|
|
|
|
assert(x < 100); // should hold
|
|
|
|
} catch {
|
|
|
|
assert(x == 0); // should hold, all changes to x has been reverted
|
|
|
|
assert(x == 1); // should 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: (315-329): CHC: Assertion violation happens here.
|
|
|
|
// Info 1391: CHC: 2 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.
|