solidity/test/libsolidity/smtCheckerTests/modifiers/modifier_inside_branch_assignment_branch.sol
2023-03-09 14:59:32 +01:00

29 lines
559 B
Solidity

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);
}
}
// ====
// SMTEngine: all
// ----
// Info 1391: CHC: 2 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.
// Warning 6838: (233-238): BMC: Condition is always true.