rust/compiler/rustc_mir_transform
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 Remove re-export. 2021-10-03 16:08:54 +02:00