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

19 lines
341 B
Solidity
Raw Normal View History

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