]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/target/configs/control_brace_style/always_next_line.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / target / configs / control_brace_style / always_next_line.rs
CommitLineData
f20569fa
XL
1// rustfmt-control_brace_style: AlwaysNextLine
2// Control brace style
3
4fn main() {
5 if lorem
6 {
7 println!("ipsum!");
8 }
9 else
10 {
11 println!("dolor!");
12 }
13 match magi
14 {
15 Homura => "Akemi",
16 Madoka => "Kaname",
17 }
18}