Skip to content

Commit cedb127

Browse files
authored
Rollup merge of rust-lang#104667 - WaffleLapkin:unfmttest, r=Dylan-DPC
Revert formatting changes of a test See https://github.com/rust-lang/rust/pull/99935/files#r1027259119 cc `@CAD97`
2 parents 6cb88b0 + d9f2c0b commit cedb127

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/test/ui/or-patterns/or-patterns-syntactic-pass.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,27 +21,27 @@ accept_pat!([p | q]);
2121
#[cfg(FALSE)]
2222
fn or_patterns() {
2323
// Top level of `let`:
24-
let (A | B);
24+
let (| A | B);
2525
let (A | B);
2626
let (A | B): u8;
2727
let (A | B) = 0;
2828
let (A | B): u8 = 0;
2929

3030
// Top level of `for`:
31-
for A | B in 0 {}
31+
for | A | B in 0 {}
3232
for A | B in 0 {}
3333

3434
// Top level of `while`:
35-
while let A | B = 0 {}
35+
while let | A | B = 0 {}
3636
while let A | B = 0 {}
3737

3838
// Top level of `if`:
39-
if let A | B = 0 {}
39+
if let | A | B = 0 {}
4040
if let A | B = 0 {}
4141

4242
// Top level of `match` arms:
4343
match 0 {
44-
A | B => {}
44+
| A | B => {}
4545
A | B => {}
4646
}
4747

0 commit comments

Comments
 (0)