solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/489_function_types_selector_6.sol

9 lines
183 B
Solidity
Raw Normal View History

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