2020-02-12 01:52:35 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
|
|
|
|
library l1 {
|
|
|
|
|
|
|
|
uint private constant TON = 1000;
|
|
|
|
function f1() public pure {
|
|
|
|
assert(TON == 1000);
|
|
|
|
assert(TON == 2000);
|
|
|
|
}
|
|
|
|
function f2(uint x, uint y) internal pure returns (uint) {
|
|
|
|
return x + y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract C {
|
|
|
|
function f(uint x) public pure {
|
|
|
|
uint z = l1.f2(x, 1);
|
|
|
|
assert(z == x + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2021-01-06 15:06:15 +00:00
|
|
|
// Warning 6328: (136-155): CHC: Assertion violation happens here.\nCounterexample:\nTON = 1000\n\nTransaction trace:\nl1.constructor()\nState: TON = 1000\nl1.f1()
|
2021-01-11 21:17:32 +00:00
|
|
|
// Warning 4984: (229-234): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.\nCounterexample:\n\nx = 115792089237316195423570985008687907853269984665640564039457584007913129639935\n\nTransaction trace:\nC.constructor()\nC.f(115792089237316195423570985008687907853269984665640564039457584007913129639935)\n l1.f2(115792089237316195423570985008687907853269984665640564039457584007913129639935, 1) -- internal call
|