solidity/test/libsolidity/syntaxTests/parsing/modifier.sol
2018-06-25 16:17:50 +02:00

4 lines
101 B
Solidity

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