summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/match_arm_leading_pipes/never.rs
blob: 8a68fe21407ee1ef51435d62cbc540619d4ef8af (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
28
// 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" => {}
        _ => {}
    }
}