solidity/test/libsolidity/syntaxTests/receiveEther/msg_data_in_receive.sol
2022-04-01 23:41:18 -05:00

6 lines
163 B
Solidity

contract C {
receive() external payable { msg.data; }
}
// ----
// TypeError 7139: (46-54='msg.data'): "msg.data" cannot be used inside of "receive" function.