solidity/test/libsolidity/smtCheckerTests/modifiers/modifier_inside_branch_assignment.sol
2020-07-23 18:49:03 +02:00

24 lines
376 B
Solidity

pragma experimental SMTChecker;
contract C {
uint x;
address owner;
modifier onlyOwner {
if (msg.sender == owner) _;
}
function f() public onlyOwner {
x = 0;
}
function g(uint y) public {
x = 1;
if (y > 0)
f();
// Fails for {y = >0, msg.sender == owner, x = 0}.
assert(x > 0);
}
}
// ----
// Warning 6328: (287-300): Assertion violation happens here