solidity/test/libsolidity/syntaxTests/conversion/function_type_nonpayable_pure.sol

11 lines
311 B
Solidity
Raw Normal View History

2018-11-06 12:29:49 +00:00
contract C {
function h() external {
}
function f() view external returns (bytes4) {
function () pure external g = this.h;
return g.selector;
}
}
// ----
// TypeError: (105-141): Type function () external is not implicitly convertible to expected type function () pure external.