solidity/test/libsolidity/smtCheckerTests/functions/constructor_state_value_inherited.sol
2020-12-30 12:14:30 +01:00

21 lines
290 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);
}
}
// ====
// SMTIgnoreCex: yes
// ----
// Warning 6328: (165-179): CHC: Assertion violation happens here.