mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
475 B
Solidity
27 lines
475 B
Solidity
abstract contract A {
|
|
bool s;
|
|
|
|
function f() public view mod {
|
|
assert(s); // holds for C, but fails for B
|
|
}
|
|
modifier mod() virtual;
|
|
}
|
|
|
|
contract B is A {
|
|
modifier mod() virtual override {
|
|
s = false;
|
|
_;
|
|
}
|
|
}
|
|
|
|
contract C is B {
|
|
modifier mod() override {
|
|
s = true;
|
|
_;
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|
|
// Warning 6328: (66-75): CHC: Assertion violation happens here.\nCounterexample:\ns = false\n\nTransaction trace:\nB.constructor()\nState: s = false\nA.f()
|