solidity/test/libsolidity/syntaxTests/array/calldata_resize.sol
2022-04-01 23:41:18 -05:00

8 lines
211 B
Solidity

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