64 lines
720 B
Rust
64 lines
720 B
Rust
// rustfmt-single_line_if_else_max_width: 0
|
|
// rustfmt-else_if_brace_style: AlwaysNextLine
|
|
|
|
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
|
|
{
|
|
();
|
|
();
|
|
();
|
|
}
|
|
}
|