solidity/test/libsolidity/smtCheckerTests/modifiers/modifier_inside_branch_assignment_branch.sol
2019-04-05 11:38:37 +02:00

28 lines
425 B
Solidity

pragma experimental SMTChecker;
contract C {
uint x;
address owner;
modifier onlyOwner {
if (msg.sender == owner) {
require(x > 0);
_;
}
}
function f() public onlyOwner {
// Condition is always true due to `require(x > 0)` in the modifier.
if (x > 0)
x -= 1;
}
function g(uint y) public {
x = 2;
if (y > 0)
f();
assert(x > 0);
}
}
// ----
// Warning: (266-271): Condition is always true.