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
|
|
|
// ----
|
2021-03-31 15:11:54 +00:00
|
|
|
// Warning 6328: (315-329): CHC: Assertion violation happens here.\nCounterexample:\nx = 0, d = 0\n\nTransaction trace:\nC.constructor()\nState: x = 0, d = 0\nC.f()
|
2021-10-06 09:53:03 +00:00
|
|
|
// Info 1180: Reentrancy property(ies) for :C:\n!(<errorCode> = 2)\n((!(x' >= 100) || ((x' + ((- 1) * x)) = 0)) && !(<errorCode> = 1))\n<errorCode> = 0 -> no errors\n<errorCode> = 1 -> Assertion failed at assert(x < 100)\n<errorCode> = 2 -> Assertion failed at assert(x == 0)\n<errorCode> = 3 -> Assertion failed at assert(x == 1)\n
|