mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
238 B
Solidity
14 lines
238 B
Solidity
|
pragma experimental SMTChecker;
|
||
|
|
||
|
contract C {
|
||
|
address owner;
|
||
|
modifier onlyOwner {
|
||
|
if (msg.sender == owner) _;
|
||
|
}
|
||
|
function g() public onlyOwner {
|
||
|
}
|
||
|
function f(uint x) public {
|
||
|
if (x > 0) g();
|
||
|
}
|
||
|
}
|