Error code E0783
The range pattern ...
is no longer allowed.
Erroneous code example:
ⓘ
Older Rust code using previous editions allowed ...
to stand for exclusive
ranges which are now signified using ..=
.
To make this code compile replace the ...
with ..=
.