solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/488_function_types_selector_5.sol

9 lines
150 B
Solidity

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