dd1fbca99a
Closes #1984
52 lines
625 B
Rust
52 lines
625 B
Rust
// rustfmt-control_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
|
|
{
|
|
();
|
|
();
|
|
();
|
|
}
|
|
}
|