We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b2daac commit a3b7990Copy full SHA for a3b7990
src/tools/rustfmt/tests/source/pattern.rs
@@ -91,7 +91,7 @@ fn issue3728() {
91
92
fn literals() {
93
match 42 {
94
- const { 1 + 2 } | 4
+ 1 | 2 | 4
95
| 6 => {}
96
10 | 11 | 12
97
| 13 | 14 => {}
src/tools/rustfmt/tests/target/pattern.rs
@@ -99,7 +99,7 @@ fn issue3728() {
99
100
101
102
- const { 1 + 2 } | 4 | 6 => {}
+ 1 | 2 | 4 | 6 => {}
103
10 | 11 | 12 | 13 | 14 => {}
104
_ => {}
105
}
0 commit comments