]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/lint-unknown-lint.stderr
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[rust.git] / tests / ui / lint / lint-unknown-lint.stderr
1 error: unknown lint: `not_a_real_lint`
2   --> $DIR/lint-unknown-lint.rs:3:10
3    |
4 LL | #![allow(not_a_real_lint)]
5    |          ^^^^^^^^^^^^^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/lint-unknown-lint.rs:1:9
9    |
10 LL | #![deny(unknown_lints)]
11    |         ^^^^^^^^^^^^^
12
13 error: unknown lint: `dead_cod`
14   --> $DIR/lint-unknown-lint.rs:5:9
15    |
16 LL | #![deny(dead_cod)]
17    |         ^^^^^^^^ help: did you mean: `dead_code`
18
19 error: unknown lint: `rust_2018_idiots`
20   --> $DIR/lint-unknown-lint.rs:9:9
21    |
22 LL | #![deny(rust_2018_idiots)]
23    |         ^^^^^^^^^^^^^^^^ help: did you mean: `rust_2018_idioms`
24
25 error: aborting due to 3 previous errors
26