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

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