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