solidity/test/libsolidity/syntaxTests/array/calldata_resize.sol

8 lines
200 B
Solidity

contract C {
function f (uint256[] calldata x) external pure {
x.length = 42;
}
}
// ----
// TypeError 7567: (75-83): Member "length" is read-only and cannot be used to resize arrays.