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

6 lines
146 B
Solidity

contract C {
function (uint) internal payable returns (uint) x;
}
// ----
// TypeError: (17-66): Only external function types can be payable.