mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-31 21:47:15 +03:00
2f15dcd4d3
This breaks code that looks like:
match foo {
1..3 => { ... }
}
Instead, write:
match foo {
1...3 => { ... }
}
Closes #17295.
r? @nick29581