solidity/test/libsolidity/ASTJSON/modifier_invocation.sol
2019-10-02 22:31:12 +02:00

4 lines
78 B
Solidity

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