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

9 lines
204 B
Solidity

contract C {
function f() public pure {
string memory y;
y[1:2];
}
}
// ----
// TypeError 1227: (77-83='y[1:2]'): Index range access is only supported for dynamic calldata arrays.