solidity/test/libsolidity/syntaxTests/parsing/modifier.sol

4 lines
60 B
Solidity
Raw Normal View History

2018-05-17 07:04:39 +00:00
contract c {
modifier mod { if (msg.sender == 0) _; }
}