summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/control_brace_style/closing_next_line.rs
blob: 1a74a28f26a9f6240b245a5dc5d40b008317775e (plain)
1
2
3
4
5
6
7
8
9
10
// rustfmt-control_brace_style: ClosingNextLine
// Control brace style

fn main() {
    if lorem { println!("ipsum!"); } else { println!("dolor!"); }
    match magi {
        Homura => "Akemi",
        Madoka => "Kaname",
    }
}