Example:
fn main() {
let x = if true {
1
// comment with wrong indent
} else {
0
};
}
(And no, this definitely should not be a comment on the else — actually, it should not be rustfmt's decision whether this applies to the else or is a free comment after the 1.)