mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
349 B
Solidity
18 lines
349 B
Solidity
pragma experimental SMTChecker;
|
|
contract C {
|
|
uint a;
|
|
modifier n { _; a = 7; }
|
|
constructor(uint x) n {
|
|
a = x;
|
|
}
|
|
}
|
|
|
|
contract A is C {
|
|
modifier m { a = 5; _; }
|
|
constructor() C(2) {
|
|
assert(a == 4);
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 6328: (188-202): CHC: Assertion violation happens here.\nCounterexample:\na = 7\n\n\n\nTransaction trace:\nconstructor()
|