5349336192
Removes else_if_brace_style from config options. Use control_brace_style instead.
55 lines
716 B
Rust
55 lines
716 B
Rust
// rustfmt-single_line_if_else_max_width: 0
|
|
// rustfmt-control_brace_style: AlwaysSameLine
|
|
|
|
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
|
|
{
|
|
();
|
|
();
|
|
();
|
|
}
|
|
}
|