solidity/test/libsolidity/smtCheckerTests/inheritance/constructor_state_variable_init_chain_alternate.sol

22 lines
289 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract A {
uint x = 1;
}
contract B is A {
constructor() public { x = 2; }
}
contract C is B {
}
contract D is C {
constructor() public {
assert(x == 2);
assert(x == 3);
}
}
// ----
// Warning 4661: (199-213): Assertion violation happens here