2018-12-19 18:51:52 +00:00
|
|
|
error: unknown lint: `not_a_real_lint`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/lint-unknown-lint.rs:3:10
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #![allow(not_a_real_lint)]
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/lint-unknown-lint.rs:1:9
|
2018-12-19 18:51:52 +00:00
|
|
|
|
|
|
|
|
LL | #![deny(unknown_lints)]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: unknown lint: `dead_cod`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/lint-unknown-lint.rs:5:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #![deny(dead_cod)]
|
2018-12-19 18:51:52 +00:00
|
|
|
| ^^^^^^^^ help: did you mean: `dead_code`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2018-12-19 18:51:52 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|