solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/356_payable_internal.sol

6 lines
124 B
Solidity
Raw Normal View History

contract test {
function f() payable internal {}
}
// ----
// TypeError: (20-52): Internal functions cannot be payable.