rust/compiler/rustc_query_system
est31 1418df5888 Adopt let_else across the compiler
This performs a substitution of code following the pattern:

let <id> = if let <pat> = ... { identity } else { ... : ! };

To simplify it to:

let <pat> = ... { identity } else { ... : ! };

By adopting the let_else feature.
2021-10-16 07:18:05 +02:00
..
src Adopt let_else across the compiler 2021-10-16 07:18:05 +02:00
Cargo.toml Move ICH to rustc_query_system. 2021-10-03 16:08:53 +02:00