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

19 lines
437 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 == 0);
assert(C.a == 0);
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----
2021-03-31 15:11:54 +00:00
// Warning 6328: (102-116): CHC: Assertion violation happens here.\nCounterexample:\na = 2\n\nTransaction trace:\nA.constructor()
// Warning 6328: (120-136): CHC: Assertion violation happens here.\nCounterexample:\na = 2\n\nTransaction trace:\nA.constructor()