solidity/test/libsolidity/smtCheckerTests/functions/constructor_hierarchy_same_var.sol
2020-07-07 12:16:18 +02:00

18 lines
305 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 4661: (134-148): Assertion violation happens here
// Warning 4661: (152-168): Assertion violation happens here