57 lines
653 B
Rust
57 lines
653 B
Rust
// rustfmt-else_if_brace_style: ClosingNextLine
|
|
|
|
fn main() {
|
|
if false {
|
|
();
|
|
();
|
|
}
|
|
|
|
if false
|
|
// lone if comment
|
|
{
|
|
();
|
|
();
|
|
}
|
|
|
|
|
|
let a = if 0 > 1 {
|
|
unreachable!()
|
|
}
|
|
else {
|
|
0x0
|
|
};
|
|
|
|
|
|
if true {
|
|
();
|
|
}
|
|
else if false {
|
|
();
|
|
();
|
|
}
|
|
else {
|
|
();
|
|
();
|
|
();
|
|
}
|
|
|
|
if true
|
|
// else-if-chain if comment
|
|
{
|
|
();
|
|
}
|
|
else if false
|
|
// else-if-chain else-if comment
|
|
{
|
|
();
|
|
();
|
|
}
|
|
else
|
|
// else-if-chain else comment
|
|
{
|
|
();
|
|
();
|
|
();
|
|
}
|
|
}
|