Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore where-clause parsing compatibility with rust 1.32
Previously: error[E0658]: multiple patterns in `if let` and `while let` are unstable (see issue 48215) --> src/item.rs:1213:13 | 1213 | / if let WhereClauseLocation::BeforeEq | WhereClauseLocation::Both = where_clause_location 1214 | | { 1215 | | generics.where_clause = input.parse()?; 1216 | | } | |_____________^ error[E0658]: multiple patterns in `if let` and `while let` are unstable (see issue 48215) --> src/item.rs:1225:17 | 1225 | / if let WhereClauseLocation::AfterEq | WhereClauseLocation::Both = 1226 | | where_clause_location 1227 | | { 1228 | | generics.where_clause = input.parse()?; 1229 | | } | |_________________^
- Loading branch information