rust/tests/target/unindent_if_else_cond_comment.rs

28 lines
520 B
Rust
Raw Normal View History

2017-06-02 04:58:19 +02:00
// Comments on else block. See #1575.
fn example() {
// `if` comment
if x {
foo();
// `else if` comment
} else if y {
foo();
// Comment on `else if`.
// Comment on `else if`.
} else if z {
bar();
/*
* Multi line comment on `else if`
*/
} else if xx {
bar();
/* Single line comment on `else if` */
} else if yy {
foo();
// `else` comment
} else {
foo();
// Comment at the end of `else` block
};
}