-
Couldn't load subscription status.
- Fork 961
Closed as not planned
Description
fn main() {
let position: Option<usize> = None;
let mut normal: Option<usize> = None;
let mut tex_coords: Option<usize> = None;
let (Some( position), Some( normal), Some(tex_coords )) = (position, normal, tex_coords) else {
return;
};
}Does not format the let-else at all, resulting in:
fn main() {
let position: Option<usize> = None;
let mut normal: Option<usize> = None;
let mut tex_coords: Option<usize> = None;
let (Some( position), Some( normal), Some(tex_coords )) = (position, normal, tex_coords) else {
return;
};
}# How to reproduce
$ rustfmt .\src\main.rsVersion:
$ rustfmt --version
rustfmt 1.5.1-stable (897e3755 2022-11-02)Metadata
Metadata
Assignees
Labels
No labels