|
1 | 1 | error: unknown clippy lint: clippy::if_not_els
|
2 |
| - --> $DIR/unknown_clippy_lints.rs:4:8 |
| 2 | + --> $DIR/unknown_clippy_lints.rs:9:8 |
3 | 3 | |
|
4 | 4 | LL | #[warn(clippy::if_not_els)]
|
5 |
| - | ^^^^^^^^^^^^^^^^^^ |
| 5 | + | ^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::if_not_else` |
6 | 6 | |
|
7 | 7 | = note: `-D clippy::unknown-clippy-lints` implied by `-D warnings`
|
8 | 8 |
|
| 9 | +error: unknown clippy lint: clippy::UNNecsaRy_cAst |
| 10 | + --> $DIR/unknown_clippy_lints.rs:10:8 |
| 11 | + | |
| 12 | +LL | #[warn(clippy::UNNecsaRy_cAst)] |
| 13 | + | ^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::unnecessary_cast` |
| 14 | + |
| 15 | +error: unknown clippy lint: clippy::useles_transute |
| 16 | + --> $DIR/unknown_clippy_lints.rs:11:8 |
| 17 | + | |
| 18 | +LL | #[warn(clippy::useles_transute)] |
| 19 | + | ^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::useless_transmute` |
| 20 | + |
| 21 | +error: unknown clippy lint: clippy::dead_cod |
| 22 | + --> $DIR/unknown_clippy_lints.rs:13:8 |
| 23 | + | |
| 24 | +LL | #[warn(clippy::dead_cod)] |
| 25 | + | ^^^^^^^^^^^^^^^^ help: did you mean: `clippy::drop_copy` |
| 26 | + |
| 27 | +error: unknown clippy lint: clippy::unused_colle |
| 28 | + --> $DIR/unknown_clippy_lints.rs:15:8 |
| 29 | + | |
| 30 | +LL | #[warn(clippy::unused_colle)] |
| 31 | + | ^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::unused_self` |
| 32 | + |
| 33 | +error: unknown clippy lint: clippy::const_static_lifetim |
| 34 | + --> $DIR/unknown_clippy_lints.rs:17:8 |
| 35 | + | |
| 36 | +LL | #[warn(clippy::const_static_lifetim)] |
| 37 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::redundant_static_lifetimes` |
| 38 | + |
9 | 39 | error: unknown clippy lint: clippy::All
|
10 |
| - --> $DIR/unknown_clippy_lints.rs:1:10 |
| 40 | + --> $DIR/unknown_clippy_lints.rs:5:10 |
11 | 41 | |
|
12 | 42 | LL | #![allow(clippy::All)]
|
13 |
| - | ^^^^^^^^^^^ help: lowercase the lint name: `all` |
| 43 | + | ^^^^^^^^^^^ help: lowercase the lint name: `clippy::all` |
| 44 | + |
| 45 | +error: unknown clippy lint: clippy::CMP_NAN |
| 46 | + --> $DIR/unknown_clippy_lints.rs:6:9 |
| 47 | + | |
| 48 | +LL | #![warn(clippy::CMP_NAN)] |
| 49 | + | ^^^^^^^^^^^^^^^ help: lowercase the lint name: `clippy::cmp_nan` |
14 | 50 |
|
15 |
| -error: aborting due to 2 previous errors |
| 51 | +error: aborting due to 8 previous errors |
16 | 52 |
|
0 commit comments