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

11 lines
232 B
Solidity
Raw Normal View History

contract C {
function h() pure external {
}
function f() view external returns (bytes4) {
var g = this.h;
return g.selector;
}
}
// ----
// Warning: (110-115): Use of the "var" keyword is deprecated.