solidity/test/libsolidity/syntaxTests/functionTypes/external_function_type_returning_internal.sol

6 lines
161 B
Solidity
Raw Normal View History

2018-03-16 10:20:06 +00:00
contract C {
function() external returns (function () internal) x;
}
2018-03-16 10:33:05 +00:00
// ----
// TypeError: (46-67): Internal type cannot be used for external function type.