solidity/test/libsolidity/smtCheckerTests/functions/constructor_hierarchy_same_var.sol
2020-09-09 16:14:21 +02:00

18 lines
307 B
Solidity

pragma experimental SMTChecker;
contract C {
uint a;
constructor(uint x) {
a = x;
}
}
contract A is C {
constructor() C(2) {
assert(a == 0);
assert(C.a == 0);
}
}
// ----
// Warning 6328: (134-148): Assertion violation happens here.
// Warning 6328: (152-168): Assertion violation happens here.