solidity/test/libsolidity/ASTJSON/modifier_definition.sol

2 lines
69 B
Solidity
Raw Normal View History

2018-08-03 17:41:35 +00:00
contract C { modifier M(uint i) { _; } function F() M(1) public {} }