solidity/test/libsolidity/smtCheckerTests/external_calls/external_single_inc.sol
2021-11-24 20:41:22 +01:00

28 lines
369 B
Solidity

abstract contract D {
function d() external virtual;
}
contract C {
uint x;
uint y;
D d;
function inc() public {
if (y == 1)
x = 1;
if (x == 0)
y = 1;
}
function f() public {
uint oldX = x;
d.d();
assert(oldX == x);
}
}
// ====
// SMTEngine: all
// SMTIgnoreCex: yes
// ----
// Warning 6328: (223-240): CHC: Assertion violation happens here.