It seems like rustfmt doesn't support formatting let_else/"let else" constructs right now.
fn main() {
let Some(okay) = Some(1) else {
let t = 1;
return;
};
}
I also couldn't find an existing issue around let_else (searched for "let else" and "let_else"), so let me know if this is an existing issue that I wasn't able to find.
It seems like rustfmt doesn't support formatting
let_else/"let else" constructs right now.I also couldn't find an existing issue around
let_else(searched for "let else" and "let_else"), so let me know if this is an existing issue that I wasn't able to find.