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

6 lines
146 B
Solidity
Raw Normal View History

2018-03-16 10:20:06 +00:00
contract C {
function (uint) internal payable returns (uint) x;
}
2018-03-16 10:33:05 +00:00
// ----
// TypeError: (17-66): Only external function types can be payable.