mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
[SMTChecker] Support modifiers
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
pragma experimental SMTChecker;
|
||||
|
||||
contract C
|
||||
{
|
||||
modifier m(uint a, uint b) {
|
||||
require(a > b);
|
||||
_;
|
||||
}
|
||||
|
||||
function f(uint x) m(x, 0) public pure {
|
||||
assert(x > 0);
|
||||
assert(x > 1);
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning: (164-177): Assertion violation happens here
|
||||
Reference in New Issue
Block a user