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

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