solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/calldata_array.sol
2022-04-01 23:41:18 -05:00

10 lines
362 B
Solidity

contract C {
function f(uint[] calldata bytesAsCalldata) external {
assembly {
let x := bytesAsCalldata
}
}
}
// ----
// TypeError 1397: (112-127='bytesAsCalldata'): Call data elements cannot be accessed directly. Use ".offset" and ".length" to access the calldata offset and length of this array and then use "calldatacopy".