summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/unknown_clippy_lints.stderr
blob: 1b859043bb53b8a493a1f98a6b3a87a6b0c069df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
error: unknown clippy lint: clippy::if_not_els
  --> $DIR/unknown_clippy_lints.rs:9:8
   |
LL | #[warn(clippy::if_not_els)]
   |        ^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::if_not_else`
   |
   = note: `-D clippy::unknown-clippy-lints` implied by `-D warnings`

error: unknown clippy lint: clippy::UNNecsaRy_cAst
  --> $DIR/unknown_clippy_lints.rs:10:8
   |
LL | #[warn(clippy::UNNecsaRy_cAst)]
   |        ^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::unnecessary_cast`

error: unknown clippy lint: clippy::useles_transute
  --> $DIR/unknown_clippy_lints.rs:11:8
   |
LL | #[warn(clippy::useles_transute)]
   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::useless_transmute`

error: unknown clippy lint: clippy::dead_cod
  --> $DIR/unknown_clippy_lints.rs:13:8
   |
LL | #[warn(clippy::dead_cod)]
   |        ^^^^^^^^^^^^^^^^ help: did you mean: `clippy::drop_copy`

error: unknown clippy lint: clippy::unused_colle
  --> $DIR/unknown_clippy_lints.rs:15:8
   |
LL | #[warn(clippy::unused_colle)]
   |        ^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::unused_self`

error: unknown clippy lint: clippy::const_static_lifetim
  --> $DIR/unknown_clippy_lints.rs:17:8
   |
LL | #[warn(clippy::const_static_lifetim)]
   |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::redundant_static_lifetimes`

error: unknown clippy lint: clippy::All
  --> $DIR/unknown_clippy_lints.rs:5:10
   |
LL | #![allow(clippy::All)]
   |          ^^^^^^^^^^^ help: lowercase the lint name: `clippy::all`

error: unknown clippy lint: clippy::CMP_NAN
  --> $DIR/unknown_clippy_lints.rs:6:9
   |
LL | #![warn(clippy::CMP_NAN)]
   |         ^^^^^^^^^^^^^^^ help: lowercase the lint name: `clippy::cmp_nan`

error: aborting due to 8 previous errors