rust/tests/target/configs-control_brace_style-closing_next_line.rs

12 lines
180 B
Rust
Raw Normal View History

// rustfmt-control_brace_style: ClosingNextLine
// Control brace style
fn main() {
if lorem {
println!("ipsum!");
}
else {
println!("dolor!");
}
}