solidity/test/libsolidity/smtCheckerTests/functions/constructor_state_value_parameter.sol

18 lines
684 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
uint x = 5;
2020-06-23 12:14:24 +00:00
constructor(uint a, uint b) {
assert(x == 5);
x = a + b;
}
2020-06-23 12:14:24 +00:00
function f(uint y) view public {
assert(y == x);
}
}
// ----
// Warning 6328: (162-176): CHC: Assertion violation happens here.\nCounterexample:\nx = 1\ny = 0\n\n\nTransaction trace:\nconstructor(1, 0)\nState: x = 1\nf(0)
// Warning 4984: (115-120): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.\nCounterexample:\nx = 5\na = 1\nb = 115792089237316195423570985008687907853269984665640564039457584007913129639935\n\n\nTransaction trace:\nconstructor(1, 115792089237316195423570985008687907853269984665640564039457584007913129639935)