summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/control_brace_style/closing_next_line.rs
blob: 013852ee79ad5b99de65bc903eab291236a2c048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// rustfmt-control_brace_style: ClosingNextLine
// Control brace style

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