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

8 lines
203 B
Solidity

contract C {
function f(uint256[42] calldata x) external pure {
x[1:2];
}
}
// ----
// TypeError 1227: (76-82='x[1:2]'): Index range access is only supported for dynamic calldata arrays.