solidity/test/libsolidity/syntaxTests/freeFunctions/free_function_qualified_modifier.sol
2020-08-18 11:46:59 +02:00

10 lines
147 B
Solidity

contract C {
modifier someModifier() { _; }
}
function fun() C.someModifier {
}
// ----
// ParserError 2314: (65-66): Expected '{' but got '.'