solidity/test/libsolidity/smtCheckerTests/functions/constructor_hierarchy_3.sol
2019-12-03 21:44:10 +01:00

23 lines
342 B
Solidity

pragma experimental SMTChecker;
contract C {
uint a;
constructor(uint x) public {
a = x;
}
}
abstract 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: (253-271): Assertion violation happens here