about summary refs log tree commit diff
path: root/clippy_lints/src/functions
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-03-06 16:54:36 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2024-04-16 16:29:13 +1000
commitc0bc81222785d078cbd29efeb2086ff2638ef819 (patch)
treef7ad1301ec14a302119bb4f1c29c3b54c8827951 /clippy_lints/src/functions
parentb64c5f991c0d9c84f7ca6c61fba561d150d5ac4c (diff)
downloadrust-c0bc81222785d078cbd29efeb2086ff2638ef819.tar.gz
rust-c0bc81222785d078cbd29efeb2086ff2638ef819.zip
Always use `ty::` qualifier for `TyKind` enum variants.
Because that's the way it should be done.
Diffstat (limited to 'clippy_lints/src/functions')
-rw-r--r--clippy_lints/src/functions/result.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/clippy_lints/src/functions/result.rs b/clippy_lints/src/functions/result.rs
index 93f088d3e33..c3a0b40a677 100644
--- a/clippy_lints/src/functions/result.rs
+++ b/clippy_lints/src/functions/result.rs
@@ -2,7 +2,7 @@ use rustc_errors::Diag;
 use rustc_hir as hir;
 use rustc_lint::{LateContext, LintContext};
 use rustc_middle::lint::in_external_macro;
-use rustc_middle::ty::{Adt, Ty};
+use rustc_middle::ty::{self, Ty};
 use rustc_span::{sym, Span};
 
 use clippy_utils::diagnostics::{span_lint_and_help, span_lint_and_then};
@@ -25,7 +25,7 @@ fn result_err_ty<'tcx>(
             .tcx
             .instantiate_bound_regions_with_erased(cx.tcx.fn_sig(id).instantiate_identity().output())
         && is_type_diagnostic_item(cx, ty, sym::Result)
-        && let Adt(_, args) = ty.kind()
+        && let ty::Adt(_, args) = ty.kind()
     {
         let err_ty = args.type_at(1);
         Some((hir_ty, err_ty))
@@ -86,7 +86,7 @@ fn check_result_unit_err(cx: &LateContext<'_>, err_ty: Ty<'_>, fn_header_span: S
 }
 
 fn check_result_large_err<'tcx>(cx: &LateContext<'tcx>, err_ty: Ty<'tcx>, hir_ty_span: Span, large_err_threshold: u64) {
-    if let Adt(adt, subst) = err_ty.kind()
+    if let ty::Adt(adt, subst) = err_ty.kind()
         && let Some(local_def_id) = err_ty
             .ty_adt_def()
             .expect("already checked this is adt")