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

14 lines
187 B
Rust
Raw Normal View History

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