solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/490_function_types_selector_7.sol

10 lines
191 B
Solidity

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