summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/match_arm_leading_pipes/never.rs
blob: 345014e4b4e80c90a398bd28d436767fadbfc8b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// rustfmt-match_arm_leading_pipes: Never

fn foo() {
    match foo {
        "foo" | "bar" => {}
        "baz"
        | "something relatively long"
        | "something really really really realllllllllllllly long" => println!("x"),
        "qux" => println!("y"),
        _ => {}
    }
}

fn issue_3973() {
    match foo {
        "foo" | "bar" => {}
        _ => {}
    }
}

fn bar() {
    match baz {
        "qux" => {}
        "foo" | "bar" => {}
        _ => {}
    }
}