2018-12-19 12:51:52 -06:00
|
|
|
error: unknown lint: `not_a_real_lint`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lint-unknown-lint.rs:3:10
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | #![allow(not_a_real_lint)]
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lint-unknown-lint.rs:1:9
|
2018-12-19 12:51:52 -06:00
|
|
|
|
|
|
|
|
LL | #![deny(unknown_lints)]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: unknown lint: `dead_cod`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lint-unknown-lint.rs:5:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | #![deny(dead_cod)]
|
2018-12-19 12:51:52 -06:00
|
|
|
| ^^^^^^^^ help: did you mean: `dead_code`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2021-05-05 10:33:14 -05:00
|
|
|
error: unknown lint: `rust_2018_idiots`
|
|
|
|
--> $DIR/lint-unknown-lint.rs:9:9
|
|
|
|
|
|
|
|
|
LL | #![deny(rust_2018_idiots)]
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: did you mean: `rust_2018_idioms`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|