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

23 lines
333 B
Solidity

pragma experimental SMTChecker;
contract C {
uint a;
constructor(uint x) public {
a = x;
}
}
contract B is C {
constructor(uint x) public {
a = x;
}
}
contract A is B {
constructor(uint x) B(x) C(x + 2) public {
assert(a == x);
assert(a == x + 1);
}
}
// ----
// Warning: (244-262): Assertion violation happens here