solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/calldata_variables.sol

10 lines
341 B
Solidity
Raw Normal View History

contract C {
2018-08-07 17:12:49 +00:00
function f(bytes calldata bytesAsCalldata) external {
assembly {
let x := bytesAsCalldata
}
}
}
// ----
2018-08-07 17:12:49 +00:00
// TypeError: (111-126): Call data elements cannot be accessed directly. Copy to a local variable first or use "calldataload" or "calldatacopy" with manually determined offsets and sizes.