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

15 lines
253 B
Rust
Raw Normal View History

// rustfmt-control_brace_style: AlwaysSameLine
// Control brace style
fn main() {
if lorem {
println!("ipsum!");
} else {
println!("dolor!");
}
match magi {
Homura => "Akemi",
Madoka => "Kaname",
}
}