]> git.lizzy.rs Git - rust.git/blob - tests/ui/unnested_or_patterns.rs
Auto merge of #9684 - kraktus:ref_option_ref, r=xFrednet
[rust.git] / tests / ui / unnested_or_patterns.rs
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     // Should be ignored by this lint, as nesting requires more characters.
10     if let &0 | &2 = &0 {}
11
12     if let box 0 | box 2 = Box::new(0) {}
13     if let box ((0 | 1)) | box (2 | 3) | box 4 = Box::new(0) {}
14     const C0: Option<u8> = Some(1);
15     if let Some(1) | C0 | Some(2) = None {}
16     if let &mut 0 | &mut 2 = &mut 0 {}
17     if let x @ 0 | x @ 2 = 0 {}
18     if let (0, 1) | (0, 2) | (0, 3) = (0, 0) {}
19     if let (1, 0) | (2, 0) | (3, 0) = (0, 0) {}
20     if let (x, ..) | (x, 1) | (x, 2) = (0, 1) {}
21     if let [0] | [1] = [0] {}
22     if let [x, 0] | [x, 1] = [0, 1] {}
23     if let [x, 0] | [x, 1] | [x, 2] = [0, 1] {}
24     if let [x, ..] | [x, 1] | [x, 2] = [0, 1] {}
25     struct TS(u8, u8);
26     if let TS(0, x) | TS(1, x) = TS(0, 0) {}
27     if let TS(1, 0) | TS(2, 0) | TS(3, 0) = TS(0, 0) {}
28     if let TS(x, ..) | TS(x, 1) | TS(x, 2) = TS(0, 0) {}
29     struct S {
30         x: u8,
31         y: u8,
32     }
33     if let S { x: 0, y } | S { y, x: 1 } = (S { x: 0, y: 1 }) {}
34     if let S { x: 0, y, .. } | S { y, x: 1 } = (S { x: 0, y: 1 }) {}
35 }