..
Allows the expression `..` (without either endpoint) in general, can be used in slicing syntax `&expr[..]` where we previously wrote `&expr[]`. The old syntax &expr[] is not yet removed or warned for.
for x in xs.into_iter()
for x in xs
for x in xs.iter()
for x in &xs
isize
i