rust/tests/ui/lint/lint-unknown-lint.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
660 B
Plaintext
Raw Normal View History

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
| ^^^^^^^^^^^^^^^
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 15:56:47 +00:00
--> $DIR/lint-unknown-lint.rs:1:9
|
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)]
| ^^^^^^^^ help: did you mean: `dead_code`
2018-08-08 12:28:26 +00:00
2021-05-05 15:33:14 +00: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 12:28:26 +00:00