mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 08:57:30 +00:00
16 lines
452 B
Text
16 lines
452 B
Text
error: unknown clippy lint: clippy::if_not_els
|
|
--> $DIR/unknown_clippy_lints.rs:13:8
|
|
|
|
|
13 | #[warn(clippy::if_not_els)]
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::unknown-clippy-lints` implied by `-D warnings`
|
|
|
|
error: unknown clippy lint: clippy::All
|
|
--> $DIR/unknown_clippy_lints.rs:10:10
|
|
|
|
|
10 | #![allow(clippy::All)]
|
|
| ^^^^^^^^^^^ help: lowercase the lint name: `all`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|