mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
23 lines
370 B
Solidity
23 lines
370 B
Solidity
|
pragma experimental SMTChecker;
|
||
|
|
||
|
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);
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// Warning 2661: (146-149): Overflow (resulting value larger than 2**256 - 1) happens here
|
||
|
// Warning 4661: (189-203): Assertion violation happens here
|