solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/076_receive_function_in_library.sol

7 lines
186 B
Solidity

library C {
receive() external payable {}
}
// ----
// TypeError: (16-45): Library functions cannot be payable.
// TypeError: (16-45): Libraries cannot have receive ether functions.