solidity/test/libsolidity/ASTJSON/modifier_invocation.sol
2018-08-03 20:35:50 +02:00

2 lines
69 B
Solidity

contract C { modifier M(uint i) { _; } function F() M(1) public {} }