]> git.lizzy.rs Git - rust.git/blob - tests/ui/unnested_or_patterns.fixed
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / tests / ui / unnested_or_patterns.fixed
1 // run-rustfix
2
3 #![feature(box_patterns)]
4 #![warn(clippy::unnested_or_patterns)]
5 #![allow(clippy::cognitive_complexity, clippy::match_ref_pats, clippy::upper_case_acronyms)]
6 #![allow(unreachable_patterns, irrefutable_let_patterns, unused_variables)]
7
8 fn main() {
9     if let box (0 | 2) = Box::new(0) {}
10     if let box (0 | 1 | 2 | 3 | 4) = Box::new(0) {}
11     const C0: &u8 = &1;
12     if let &(0 | 2) | C0 = &0 {}
13     if let &mut (0 | 2) = &mut 0 {}
14     if let x @ (0 | 2) = 0 {}
15     if let (0, 1 | 2 | 3) = (0, 0) {}
16     if let (1 | 2 | 3, 0) = (0, 0) {}
17     if let (x, ..) | (x, 1 | 2) = (0, 1) {}
18     if let [0 | 1] = [0] {}
19     if let [x, 0 | 1] = [0, 1] {}
20     if let [x, 0 | 1 | 2] = [0, 1] {}
21     if let [x, ..] | [x, 1 | 2] = [0, 1] {}
22     struct TS(u8, u8);
23     if let TS(0 | 1, x) = TS(0, 0) {}
24     if let TS(1 | 2 | 3, 0) = TS(0, 0) {}
25     if let TS(x, ..) | TS(x, 1 | 2) = TS(0, 0) {}
26     struct S {
27         x: u8,
28         y: u8,
29     }
30     if let S { x: 0 | 1, y } = (S { x: 0, y: 1 }) {}
31     if let S { x: 0, y, .. } | S { y, x: 1 } = (S { x: 0, y: 1 }) {}
32 }