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

8 lines
185 B
Solidity
Raw Normal View History

contract C {
function f(uint256[42] memory x) public pure {
x[1:2];
}
}
// ----
// TypeError: (72-78): Index range access is only supported for dynamic calldata arrays.