]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_trait_selection/traits/query/type_op/prove_predicate.rs
introduce PredicateAtom
[rust.git] / src / librustc_trait_selection / traits / query / type_op / prove_predicate.rs
index 24551299df252649a45038b004f5c38a96f42b09..93ddcb6855400b5cb95571d8d136df5143d483a1 100644 (file)
@@ -15,9 +15,7 @@ fn try_fast_path(
         // `&T`, accounts for about 60% percentage of the predicates
         // we have to prove. No need to canonicalize and all that for
         // such cases.
-        if let ty::PredicateKind::Trait(trait_ref, _) =
-            key.value.predicate.ignore_quantifiers().skip_binder().kind()
-        {
+        if let ty::PredicateAtom::Trait(trait_ref, _) = key.value.predicate.skip_binders() {
             if let Some(sized_def_id) = tcx.lang_items().sized_trait() {
                 if trait_ref.def_id() == sized_def_id {
                     if trait_ref.self_ty().is_trivially_sized(tcx) {