solidity/test/libsolidity/syntaxTests/parsing/modifier.sol
2018-05-22 13:25:04 +02:00

4 lines
60 B
Solidity

contract c {
modifier mod { if (msg.sender == 0) _; }
}