mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-12 08:36:03 +00:00
11 lines
229 B
Rust
11 lines
229 B
Rust
// rustfmt-control_brace_style: AlwaysNextLine
|
|
// Control brace style
|
|
|
|
fn main() {
|
|
if lorem { println!("ipsum!"); } else { println!("dolor!"); }
|
|
match magi {
|
|
Homura => "Akemi",
|
|
Madoka => "Kaname",
|
|
}
|
|
}
|