summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/match_arm_leading_pipes/preserve.rs
blob: 5486877bde1906dcdbf3b6cf7450a3ca16e0be47 (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
29
30
31
32
33
34
35
36
// rustfmt-match_arm_leading_pipes: Preserve

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" => {}
        _ => {}
    }
}

fn f(x: NonAscii) -> bool {
    match x {
      // foo
              |   Éfgh => true,
        _ => false,
    }
}