]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/source/configs/match_arm_leading_pipes/preserve.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / rustfmt / tests / source / configs / match_arm_leading_pipes / preserve.rs
CommitLineData
f20569fa
XL
1// rustfmt-match_arm_leading_pipes: Preserve
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"
17 | "bar" => {}
18 _ => {}
19 }
20}
21
22fn bar() {
23 match baz {
24 "qux" => { }
25 "foo" | "bar" => {}
26 _ => {}
27 }
28}