solidity/test/libsolidity/syntaxTests/array/slice/calldata_dynamic_convert_to_memory.sol

8 lines
216 B
Solidity

contract C {
function f(bytes calldata x) external {
bytes memory y = x[1:2];
}
}
// ----
// TypeError: (65-88): Type bytes calldata slice is not implicitly convertible to expected type bytes memory.