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.
|
|
|
|
// Info 1180: Reentrancy property(ies) for :C:\n!(<errorCode> = 1)\n<errorCode> = 0 -> no errors\n<errorCode> = 1 -> Assertion failed at assert(x == 0)\n<errorCode> = 2 -> Assertion failed at assert(x == 1)\n
|