mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
26 lines
731 B
Solidity
26 lines
731 B
Solidity
|
==== Source: base ====
|
||
|
contract Base {
|
||
|
uint x;
|
||
|
address a;
|
||
|
function f() internal returns (uint) {
|
||
|
a = address(this);
|
||
|
++x;
|
||
|
return 2;
|
||
|
}
|
||
|
}
|
||
|
==== Source: der ====
|
||
|
pragma experimental SMTChecker;
|
||
|
import "base";
|
||
|
contract Der is Base {
|
||
|
function g(uint y) public {
|
||
|
x += f();
|
||
|
assert(y > x);
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// Warning 1218: (der:101-109): Error trying to invoke SMT solver.
|
||
|
// Warning 6328: (der:113-126): Assertion violation happens here.
|
||
|
// Warning 2661: (base:100-103): Overflow (resulting value larger than 2**256 - 1) happens here.
|
||
|
// Warning 2661: (der:101-109): Overflow (resulting value larger than 2**256 - 1) happens here.
|
||
|
// Warning 2661: (base:100-103): Overflow (resulting value larger than 2**256 - 1) happens here.
|