]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/issue-97094.stderr
Auto merge of #106884 - clubby789:fieldless-enum-debug, r=michaelwoerister
[rust.git] / tests / ui / lint / issue-97094.stderr
1 error: unknown lint: `nonex_lint_top_level`
2   --> $DIR/issue-97094.rs:5:26
3    |
4 LL | #![cfg_attr(all(), allow(nonex_lint_top_level))]
5    |                          ^^^^^^^^^^^^^^^^^^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/issue-97094.rs:1:9
9    |
10 LL | #![deny(warnings)]
11    |         ^^^^^^^^
12    = note: `#[deny(unknown_lints)]` implied by `#[deny(warnings)]`
13
14 error: lint `bare_trait_object` has been renamed to `bare_trait_objects`
15   --> $DIR/issue-97094.rs:7:26
16    |
17 LL | #![cfg_attr(all(), allow(bare_trait_object))]
18    |                          ^^^^^^^^^^^^^^^^^ help: use the new name: `bare_trait_objects`
19    |
20    = note: `#[deny(renamed_and_removed_lints)]` implied by `#[deny(warnings)]`
21
22 error: unknown lint: `nonex_lint_mod`
23   --> $DIR/issue-97094.rs:10:25
24    |
25 LL | #[cfg_attr(all(), allow(nonex_lint_mod))]
26    |                         ^^^^^^^^^^^^^^
27
28 error: unknown lint: `nonex_lint_mod_inner`
29   --> $DIR/issue-97094.rs:13:30
30    |
31 LL |     #![cfg_attr(all(), allow(nonex_lint_mod_inner))]
32    |                              ^^^^^^^^^^^^^^^^^^^^
33
34 error: unknown lint: `nonex_lint_fn`
35   --> $DIR/issue-97094.rs:17:25
36    |
37 LL | #[cfg_attr(all(), allow(nonex_lint_fn))]
38    |                         ^^^^^^^^^^^^^
39
40 error: unknown lint: `nonex_lint_in_macro`
41   --> $DIR/issue-97094.rs:28:29
42    |
43 LL |     #[cfg_attr(all(), allow(nonex_lint_in_macro))]
44    |                             ^^^^^^^^^^^^^^^^^^^
45
46 error: unknown lint: `nonex_lint_fn`
47   --> $DIR/issue-97094.rs:47:13
48    |
49 LL |     #[allow(nonex_lint_fn)]
50    |             ^^^^^^^^^^^^^
51
52 error: aborting due to 7 previous errors
53