summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-internal/match_type_on_diag_item.stderr
blob: e3cb6b6c22eada7f40fb0edeb61261104385a7a0 (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
error: usage of `clippy_utils::ty::match_type()` on a type diagnostic item
  --> $DIR/match_type_on_diag_item.rs:31:17
   |
LL |         let _ = match_type(cx, ty, &OPTION);
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `clippy_utils::ty::is_type_diagnostic_item(cx, ty, sym::Option)`
   |
note: the lint level is defined here
  --> $DIR/match_type_on_diag_item.rs:1:9
   |
LL | #![deny(clippy::internal)]
   |         ^^^^^^^^^^^^^^^^
   = note: `#[deny(clippy::match_type_on_diagnostic_item)]` implied by `#[deny(clippy::internal)]`

error: usage of `clippy_utils::ty::match_type()` on a type diagnostic item
  --> $DIR/match_type_on_diag_item.rs:32:17
   |
LL |         let _ = match_type(cx, ty, &["core", "result", "Result"]);
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `clippy_utils::ty::is_type_diagnostic_item(cx, ty, sym::Result)`

error: usage of `clippy_utils::ty::match_type()` on a type diagnostic item
  --> $DIR/match_type_on_diag_item.rs:35:17
   |
LL |         let _ = clippy_utils::ty::match_type(cx, ty, rc_path);
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `clippy_utils::ty::is_type_diagnostic_item(cx, ty, sym::Rc)`

error: aborting due to 3 previous errors