1
Fork 0

update rustfmt test

This commit is contained in:
lcnr 2025-03-21 09:35:22 +01:00
parent 8b2daac8d3
commit a3b7990b9a
2 changed files with 2 additions and 2 deletions

View file

@ -91,7 +91,7 @@ fn issue3728() {
fn literals() {
match 42 {
const { 1 + 2 } | 4
1 | 2 | 4
| 6 => {}
10 | 11 | 12
| 13 | 14 => {}

View file

@ -99,7 +99,7 @@ fn issue3728() {
fn literals() {
match 42 {
const { 1 + 2 } | 4 | 6 => {}
1 | 2 | 4 | 6 => {}
10 | 11 | 12 | 13 | 14 => {}
_ => {}
}