summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/control_brace_style/always_next_line.rs
blob: 7dc06f207fe36315e5d1a3f383ac9af3075c39bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// rustfmt-control_brace_style: AlwaysNextLine
// Control brace style

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