]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-non_exhaustive_omitted_patterns_lint.stderr
Rollup merge of #93850 - asquared31415:extern-static-size-ice, r=jackh726
[rust.git] / src / test / ui / feature-gates / feature-gate-non_exhaustive_omitted_patterns_lint.stderr
1 error[E0658]: the `non_exhaustive_omitted_patterns` lint is unstable
2   --> $DIR/feature-gate-non_exhaustive_omitted_patterns_lint.rs:1:1
3    |
4 LL | #![deny(non_exhaustive_omitted_patterns)]
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: see issue #89554 <https://github.com/rust-lang/rust/issues/89554> for more information
8    = help: add `#![feature(non_exhaustive_omitted_patterns_lint)]` to the crate attributes to enable
9
10 error[E0658]: the `non_exhaustive_omitted_patterns` lint is unstable
11   --> $DIR/feature-gate-non_exhaustive_omitted_patterns_lint.rs:4:1
12    |
13 LL | #![allow(non_exhaustive_omitted_patterns)]
14    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15    |
16    = note: see issue #89554 <https://github.com/rust-lang/rust/issues/89554> for more information
17    = help: add `#![feature(non_exhaustive_omitted_patterns_lint)]` to the crate attributes to enable
18
19 error[E0658]: the `non_exhaustive_omitted_patterns` lint is unstable
20   --> $DIR/feature-gate-non_exhaustive_omitted_patterns_lint.rs:13:5
21    |
22 LL |     #[allow(non_exhaustive_omitted_patterns)]
23    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24    |
25    = note: see issue #89554 <https://github.com/rust-lang/rust/issues/89554> for more information
26    = help: add `#![feature(non_exhaustive_omitted_patterns_lint)]` to the crate attributes to enable
27
28 error[E0658]: the `non_exhaustive_omitted_patterns` lint is unstable
29   --> $DIR/feature-gate-non_exhaustive_omitted_patterns_lint.rs:13:5
30    |
31 LL |     #[allow(non_exhaustive_omitted_patterns)]
32    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
33    |
34    = note: see issue #89554 <https://github.com/rust-lang/rust/issues/89554> for more information
35    = help: add `#![feature(non_exhaustive_omitted_patterns_lint)]` to the crate attributes to enable
36
37 error[E0658]: the `non_exhaustive_omitted_patterns` lint is unstable
38   --> $DIR/feature-gate-non_exhaustive_omitted_patterns_lint.rs:26:9
39    |
40 LL |         #[warn(non_exhaustive_omitted_patterns)]
41    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42    |
43    = note: see issue #89554 <https://github.com/rust-lang/rust/issues/89554> for more information
44    = help: add `#![feature(non_exhaustive_omitted_patterns_lint)]` to the crate attributes to enable
45
46 error[E0658]: the `non_exhaustive_omitted_patterns` lint is unstable
47   --> $DIR/feature-gate-non_exhaustive_omitted_patterns_lint.rs:1:1
48    |
49 LL | #![deny(non_exhaustive_omitted_patterns)]
50    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
51    |
52    = note: see issue #89554 <https://github.com/rust-lang/rust/issues/89554> for more information
53    = help: add `#![feature(non_exhaustive_omitted_patterns_lint)]` to the crate attributes to enable
54
55 error[E0658]: the `non_exhaustive_omitted_patterns` lint is unstable
56   --> $DIR/feature-gate-non_exhaustive_omitted_patterns_lint.rs:4:1
57    |
58 LL | #![allow(non_exhaustive_omitted_patterns)]
59    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
60    |
61    = note: see issue #89554 <https://github.com/rust-lang/rust/issues/89554> for more information
62    = help: add `#![feature(non_exhaustive_omitted_patterns_lint)]` to the crate attributes to enable
63
64 error[E0658]: the `non_exhaustive_omitted_patterns` lint is unstable
65   --> $DIR/feature-gate-non_exhaustive_omitted_patterns_lint.rs:13:5
66    |
67 LL |     #[allow(non_exhaustive_omitted_patterns)]
68    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
69    |
70    = note: see issue #89554 <https://github.com/rust-lang/rust/issues/89554> for more information
71    = help: add `#![feature(non_exhaustive_omitted_patterns_lint)]` to the crate attributes to enable
72
73 error[E0658]: the `non_exhaustive_omitted_patterns` lint is unstable
74   --> $DIR/feature-gate-non_exhaustive_omitted_patterns_lint.rs:13:5
75    |
76 LL |     #[allow(non_exhaustive_omitted_patterns)]
77    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
78    |
79    = note: see issue #89554 <https://github.com/rust-lang/rust/issues/89554> for more information
80    = help: add `#![feature(non_exhaustive_omitted_patterns_lint)]` to the crate attributes to enable
81
82 error[E0658]: the `non_exhaustive_omitted_patterns` lint is unstable
83   --> $DIR/feature-gate-non_exhaustive_omitted_patterns_lint.rs:26:9
84    |
85 LL |         #[warn(non_exhaustive_omitted_patterns)]
86    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
87    |
88    = note: see issue #89554 <https://github.com/rust-lang/rust/issues/89554> for more information
89    = help: add `#![feature(non_exhaustive_omitted_patterns_lint)]` to the crate attributes to enable
90
91 error: aborting due to 10 previous errors
92
93 For more information about this error, try `rustc --explain E0658`.