solidity/test/libsolidity/smtCheckerTests/functions/constructor_state_value_inherited.sol
2020-12-29 22:17:44 +01:00

19 lines
355 B
Solidity

pragma experimental SMTChecker;
contract B {
uint x = 5;
}
contract C is B {
constructor() {
assert(x == 5);
x = 10;
}
function f(uint y) public view {
assert(y == x);
}
}
// ----
// Warning 6328: (165-179): CHC: Assertion violation happens here.\nCounterexample:\nx = 10\ny = 11\n\n\nTransaction trace:\nconstructor()\nState: x = 10\nf(11)