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

6 lines
151 B
Solidity

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