Description
Lines 184 to 194 in 4ecdc37
This can lead to the following strange behavior:
julia> a = @view(collect(0x00:0x0f)[begin:2:end])
8-element view(::Vector{UInt8}, 1:2:15) with eltype UInt8:
0x00
0x02
0x04
0x06
0x08
0x0a
0x0c
0x0e
julia> b = read(IOBuffer(a))
8-element Vector{UInt8}:
0x00
0x01
0x02
0x03
0x04
0x05
0x06
0x07
### Tasks