Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
librustc: Forbid
..
in range patterns.
This breaks code that looks like: match foo { 1..3 => { ... } } Instead, write: match foo { 1...3 => { ... } } Closes rust-lang#17295. [breaking-change]
- Loading branch information