rust-clippy/tests/ui/unknown_clippy_lints.stderr

53 lines
1.7 KiB
Text
Raw Normal View History

error: unknown lint: `clippy::All`
--> $DIR/unknown_clippy_lints.rs:5:10
|
LL | #![allow(clippy::All)]
| ^^^^^^^^^^^ help: did you mean: `clippy::all`
|
= note: `-D unknown-lints` implied by `-D warnings`
error: unknown lint: `clippy::CMP_NAN`
--> $DIR/unknown_clippy_lints.rs:6:9
|
LL | #![warn(clippy::CMP_NAN)]
| ^^^^^^^^^^^^^^^ help: did you mean: `clippy::cmp_nan`
error: unknown lint: `clippy::if_not_els`
2019-12-27 11:41:26 +00:00
--> $DIR/unknown_clippy_lints.rs:9: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`
2019-12-27 11:41:26 +00:00
--> $DIR/unknown_clippy_lints.rs:10:8
|
LL | #[warn(clippy::UNNecsaRy_cAst)]
| ^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::unnecessary_cast`
error: unknown lint: `clippy::useles_transute`
2019-12-27 11:41:26 +00:00
--> $DIR/unknown_clippy_lints.rs:11:8
|
LL | #[warn(clippy::useles_transute)]
| ^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::useless_transmute`
error: unknown lint: `clippy::dead_cod`
2019-12-27 11:41:26 +00:00
--> $DIR/unknown_clippy_lints.rs:13:8
|
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`
2019-12-27 11:41:26 +00:00
--> $DIR/unknown_clippy_lints.rs:15:8
|
LL | #[warn(clippy::unused_colle)]
| ^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::unused_self`
error: unknown lint: `clippy::const_static_lifetim`
2019-12-27 11:41:26 +00:00
--> $DIR/unknown_clippy_lints.rs:17:8
|
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