solidity/test/libsolidity/smtCheckerTests/functions/constructor_hierarchy_same_var.sol
2020-03-11 16:29:07 +01:00

18 lines
309 B
Solidity

pragma experimental SMTChecker;
contract C {
uint a;
constructor(uint x) public {
a = x;
}
}
contract A is C {
constructor() C(2) public {
assert(a == 0);
assert(C.a == 0);
}
}
// ----
// Warning: (148-162): Assertion violation happens here
// Warning: (166-182): Assertion violation happens here