This breaks code that looks like:
match foo {
1..3 => { ... }
}
Instead, write:
match foo {
1...3 => { ... }
}
Closes #17295.
[breaking-change]
|
||
|---|---|---|
| .. | ||
| fmt.rs | ||
| lib.rs | ||
| reflect.rs | ||
| repr.rs | ||
This breaks code that looks like:
match foo {
1..3 => { ... }
}
Instead, write:
match foo {
1...3 => { ... }
}
Closes #17295.
[breaking-change]
|
||
|---|---|---|
| .. | ||
| fmt.rs | ||
| lib.rs | ||
| reflect.rs | ||
| repr.rs | ||