1 2 3 4 5 6 7 8 9
// SPDX-License-Identifier: MIT pragma solidity ^0.8.34; contract EvmCompatMsgData { function getData(uint256 value) public pure returns (bytes memory) { value; return msg.data; } }