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

6 lines
103 B
Solidity
Raw Normal View History

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