blob: 013852ee79ad5b99de65bc903eab291236a2c048 [file] [log] [blame]
// rustfmt-control_brace_style: ClosingNextLine
// Control brace style
fn main() {
if lorem {
println!("ipsum!");
}
else {
println!("dolor!");
}
match magi {
Homura => "Akemi",
Madoka => "Kaname",
}
}