solidity/test/libsolidity/smtCheckerTests/modifiers/modifier_control_flow.sol
2019-03-20 11:32:20 +01:00

19 lines
228 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: (144-157): Assertion violation happens here