solidity/test/libsolidity/smtCheckerTests/external_calls/external_inc.sol

25 lines
498 B
Solidity
Raw Normal View History

abstract contract D {
function d() external virtual;
}
contract C {
uint x;
D d;
function inc() public {
++x;
}
function f() public {
d.d();
assert(x < 10);
}
}
2020-12-10 13:06:34 +00:00
// ====
2021-03-31 15:11:54 +00:00
// SMTEngine: all
2020-12-10 13:06:34 +00:00
// SMTIgnoreCex: yes
// ----
2021-03-31 15:11:54 +00:00
// Warning 4984: (113-116): CHC: Overflow (resulting value larger than 2**256 - 1) might happen here.
// Warning 6328: (156-170): CHC: Assertion violation happens here.
// Warning 2661: (113-116): BMC: Overflow (resulting value larger than 2**256 - 1) happens here.