summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/match_arm_blocks/true.rs
blob: eb9e34059c7e923197d8a2cbd88f6a122d3bb71b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// rustfmt-match_arm_blocks: true
// Wrap match-arms

fn main() {
    match lorem {
        true => {
            foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo(x)
        }
        false => {
            println!("{}", sit)
        }
    }
}