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

23 lines
388 B
Solidity

pragma experimental SMTChecker;
contract C
{
uint x;
modifier m {
require(x > 0);
_;
// Fails because of overflow behavior.
// Overflow is not reported because this assertion prevents
// it from reaching the end of the function.
assert(x > 1);
}
function f() m public {
assert(x > 0);
x = x + 1;
}
}
// ----
// Warning: (245-258): Assertion violation happens here