rust/tests/target/else-if-brace-style-always-same-line.rs
Nick Cameron 5349336192 Refactor if/else formatting
Removes else_if_brace_style from config options. Use control_brace_style instead.
2017-01-11 18:14:41 +13:00

52 lines
676 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
{
();
();
();
}
}