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

9 lines
192 B
Solidity

contract C {
bytes x;
function f() public view {
x[1:2];
}
}
// ----
// TypeError 1227: (65-71='x[1:2]'): Index range access is only supported for dynamic calldata arrays.