]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/target/configs/match_arm_leading_pipes/never.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / rustfmt / tests / target / configs / match_arm_leading_pipes / never.rs
CommitLineData
f20569fa
XL
1// rustfmt-match_arm_leading_pipes: Never
2
3fn foo() {
4 match foo {
5 "foo" | "bar" => {}
6 "baz"
7 | "something relatively long"
8 | "something really really really realllllllllllllly long" => println!("x"),
9 "qux" => println!("y"),
10 _ => {}
11 }
12}
13
14fn issue_3973() {
15 match foo {
16 "foo" | "bar" => {}
17 _ => {}
18 }
19}
20
21fn bar() {
22 match baz {
23 "qux" => {}
24 "foo" | "bar" => {}
25 _ => {}
26 }
27}