solidity/test/libsolidity/smtCheckerTests/modifiers/modifier_control_flow.sol
2020-07-23 18:49:03 +02:00

19 lines
233 B
Solidity

pragma experimental SMTChecker;
contract C
{
uint x;
modifier m {
if (x == 0)
_;
}
function f() m public view {
assert(x == 0);
assert(x > 1);
}
}
// ----
// Warning 6328: (144-157): Assertion violation happens here