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

5 lines
109 B
Solidity
Raw Normal View History

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