solidity/test/libsolidity/syntaxTests/functionTypes/external_function_type_taking_internal.sol
2018-04-11 22:00:04 +02:00

6 lines
150 B
Solidity

contract C {
function(function () internal) external x;
}
// ----
// TypeError: (26-47): Internal type cannot be used for external function type.