solidity/test/libsolidity/syntaxTests/modifiers/definition_in_library_virtual.sol

5 lines
44 B
Solidity

library L {
modifier m { _; }
}
// ----