solidity/test/libsolidity/smtCheckerTests/inheritance/constructor_state_variable_init_diamond_middle.sol
2019-11-28 14:43:23 +01:00

23 lines
320 B
Solidity

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