solidity/test/libsolidity/smtCheckerTests/modifiers/modifier_control_flow.sol

19 lines
233 B
Solidity
Raw Normal View History

2019-03-11 20:06:28 +00:00
pragma experimental SMTChecker;
contract C
{
uint x;
modifier m {
if (x == 0)
_;
}
function f() m public view {
assert(x == 0);
assert(x > 1);
}
}
// ----
2020-07-13 18:48:00 +00:00
// Warning 6328: (144-157): Assertion violation happens here