rust-clippy/tests/ui/unknown_clippy_lints.stderr

54 lines
1.7 KiB
Text
Raw Normal View History

error: unknown lint: `clippy::All`
--> $DIR/unknown_clippy_lints.rs:3:10
|
LL | #![allow(clippy::All)]
| ^^^^^^^^^^^ help: did you mean: `clippy::all`
|
= note: `-D unknown-lints` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(unknown_lints)]`
2023-05-21 10:12:12 +00:00
error: unknown lint: `clippy::CMP_OWNED`
--> $DIR/unknown_clippy_lints.rs:4:9
|
2023-05-21 10:12:12 +00:00
LL | #![warn(clippy::CMP_OWNED)]
| ^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::cmp_owned`
error: unknown lint: `clippy::if_not_els`
--> $DIR/unknown_clippy_lints.rs:7:8
2018-11-02 11:58:16 +00:00
|
2018-12-27 15:57:55 +00:00
LL | #[warn(clippy::if_not_els)]
2019-12-27 11:41:26 +00:00
| ^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::if_not_else`
error: unknown lint: `clippy::UNNecsaRy_cAst`
--> $DIR/unknown_clippy_lints.rs:8:8
2019-12-27 11:41:26 +00:00
|
LL | #[warn(clippy::UNNecsaRy_cAst)]
| ^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::unnecessary_cast`
error: unknown lint: `clippy::useles_transute`
--> $DIR/unknown_clippy_lints.rs:9:8
2019-12-27 11:41:26 +00:00
|
LL | #[warn(clippy::useles_transute)]
| ^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::useless_transmute`
error: unknown lint: `clippy::dead_cod`
--> $DIR/unknown_clippy_lints.rs:11:8
2019-12-27 11:41:26 +00:00
|
LL | #[warn(clippy::dead_cod)]
2023-03-27 19:05:43 +00:00
| ^^^^^^^^^^^^^^^^ help: did you mean: `clippy::eq_op`
2019-12-27 11:41:26 +00:00
error: unknown lint: `clippy::unused_colle`
--> $DIR/unknown_clippy_lints.rs:13:8
2019-12-27 11:41:26 +00:00
|
LL | #[warn(clippy::unused_colle)]
| ^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::unused_self`
error: unknown lint: `clippy::const_static_lifetim`
--> $DIR/unknown_clippy_lints.rs:15:8
2019-12-27 11:41:26 +00:00
|
LL | #[warn(clippy::const_static_lifetim)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::redundant_static_lifetimes`
2021-05-07 19:53:02 +00:00
error: aborting due to 8 previous errors