]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const_in_pattern/reject_non_structural.stderr
Rollup merge of #98609 - TaKO8Ki:fix-ice-for-associated-constant-generics, r=lcnr
[rust.git] / src / test / ui / consts / const_in_pattern / reject_non_structural.stderr
1 error: to use a constant of type `NoDerive` in a pattern, `NoDerive` must be annotated with `#[derive(PartialEq, Eq)]`
2   --> $DIR/reject_non_structural.rs:40:36
3    |
4 LL |     match Derive::Some(NoDerive) { ENUM => dbg!(ENUM), _ => panic!("whoops"), };
5    |                                    ^^^^
6
7 error: to use a constant of type `NoDerive` in a pattern, `NoDerive` must be annotated with `#[derive(PartialEq, Eq)]`
8   --> $DIR/reject_non_structural.rs:44:28
9    |
10 LL |     match Some(NoDerive) { FIELD => dbg!(FIELD), _ => panic!("whoops"), };
11    |                            ^^^^^
12
13 error: to use a constant of type `NoDerive` in a pattern, `NoDerive` must be annotated with `#[derive(PartialEq, Eq)]`
14   --> $DIR/reject_non_structural.rs:49:27
15    |
16 LL |     match Some(NoDerive) {INDIRECT => dbg!(INDIRECT), _ => panic!("whoops"), };
17    |                           ^^^^^^^^
18
19 error: to use a constant of type `NoDerive` in a pattern, `NoDerive` must be annotated with `#[derive(PartialEq, Eq)]`
20   --> $DIR/reject_non_structural.rs:53:36
21    |
22 LL |     match (None, Some(NoDerive)) { TUPLE => dbg!(TUPLE), _ => panic!("whoops"), };
23    |                                    ^^^^^
24
25 error: to use a constant of type `NoDerive` in a pattern, `NoDerive` must be annotated with `#[derive(PartialEq, Eq)]`
26   --> $DIR/reject_non_structural.rs:57:28
27    |
28 LL |     match Some(NoDerive) { TYPE_ASCRIPTION => dbg!(TYPE_ASCRIPTION), _ => panic!("whoops"), };
29    |                            ^^^^^^^^^^^^^^^
30
31 error: to use a constant of type `NoDerive` in a pattern, `NoDerive` must be annotated with `#[derive(PartialEq, Eq)]`
32   --> $DIR/reject_non_structural.rs:61:36
33    |
34 LL |     match [None, Some(NoDerive)] { ARRAY => dbg!(ARRAY), _ => panic!("whoops"), };
35    |                                    ^^^^^
36
37 error: to use a constant of type `NoDerive` in a pattern, `NoDerive` must be annotated with `#[derive(PartialEq, Eq)]`
38   --> $DIR/reject_non_structural.rs:65:33
39    |
40 LL |     match [Some(NoDerive); 2] { REPEAT => dbg!(REPEAT), _ => panic!("whoops"), };
41    |                                 ^^^^^^
42
43 error: to use a constant of type `NoDerive` in a pattern, `NoDerive` must be annotated with `#[derive(PartialEq, Eq)]`
44   --> $DIR/reject_non_structural.rs:65:33
45    |
46 LL |     match [Some(NoDerive); 2] { REPEAT => dbg!(REPEAT), _ => panic!("whoops"), };
47    |                                 ^^^^^^
48
49 error: to use a constant of type `NoDerive` in a pattern, `NoDerive` must be annotated with `#[derive(PartialEq, Eq)]`
50   --> $DIR/reject_non_structural.rs:71:28
51    |
52 LL |     match Some(NoDerive) { NoDerive::ASSOC => dbg!(NoDerive::ASSOC), _ => panic!("whoops"), };
53    |                            ^^^^^^^^^^^^^^^
54
55 error: to use a constant of type `NoDerive` in a pattern, `NoDerive` must be annotated with `#[derive(PartialEq, Eq)]`
56   --> $DIR/reject_non_structural.rs:75:28
57    |
58 LL |     match Some(NoDerive) { BLOCK => dbg!(BLOCK), _ => panic!("whoops"), };
59    |                            ^^^^^
60
61 warning: to use a constant of type `NoDerive` in a pattern, `NoDerive` must be annotated with `#[derive(PartialEq, Eq)]`
62   --> $DIR/reject_non_structural.rs:79:29
63    |
64 LL |     match &Some(NoDerive) { ADDR_OF => dbg!(ADDR_OF), _ => panic!("whoops"), };
65    |                             ^^^^^^^
66    |
67 note: the lint level is defined here
68   --> $DIR/reject_non_structural.rs:12:9
69    |
70 LL | #![warn(indirect_structural_match)]
71    |         ^^^^^^^^^^^^^^^^^^^^^^^^^
72    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
73    = note: for more information, see issue #62411 <https://github.com/rust-lang/rust/issues/62411>
74
75 error: aborting due to 10 previous errors; 1 warning emitted
76