solidity/test/libsolidity/smtCheckerTests/functions/constructor_hierarchy.sol

18 lines
305 B
Solidity
Raw Normal View History

contract C {
uint a;
2020-06-23 12:14:24 +00:00
constructor(uint x) {
a = x;
}
}
contract A is C {
2020-06-23 12:14:24 +00:00
constructor() C(2) {
assert(a == 2);
assert(a == 3);
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----
2021-03-31 15:11:54 +00:00
// Warning 6328: (120-134): CHC: Assertion violation happens here.\nCounterexample:\na = 2\n\nTransaction trace:\nA.constructor()