solidity/test/libsolidity/syntaxTests/parsing/modifier.sol
2021-04-20 17:38:29 +02:00

5 lines
109 B
Solidity

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