solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/487_function_types_selector_4.sol

6 lines
103 B
Solidity

contract C {
function f() pure external returns (bytes4) {
return this.f.selector;
}
}