rustc_infer/infer/outlives/
test_type_match.rs

1use std::collections::hash_map::Entry;
2
3use rustc_data_structures::fx::FxHashMap;
4use rustc_hir::def_id::DefId;
5use rustc_middle::ty::error::TypeError;
6use rustc_middle::ty::{self, Ty, TyCtxt, TypeVisitableExt};
7use rustc_type_ir::relate::relate_args_with_variances;
8use tracing::instrument;
9
10use crate::infer::region_constraints::VerifyIfEq;
11use crate::infer::relate::{self as relate, Relate, RelateResult, TypeRelation};
12
13/// Given a "verify-if-eq" type test like:
14///
15/// ```rust,ignore (pseudo-Rust)
16/// exists<'a...> {
17///     verify_if_eq(some_type, bound_region)
18/// }
19/// ```
20///
21/// and the type `test_ty` that the type test is being tested against,
22/// returns:
23///
24/// * `None` if `some_type` cannot be made equal to `test_ty`,
25///   no matter the values of the variables in `exists`.
26/// * `Some(r)` with a suitable bound (typically the value of `bound_region`, modulo
27///   any bound existential variables, which will be instantiated) for the
28///   type under test.
29///
30/// NB: This function uses a simplistic, syntactic version of type equality.
31/// In other words, it may spuriously return `None` even if the type-under-test
32/// is in fact equal to `some_type`. In practice, though, this is used on types
33/// that are either projections like `T::Item` or `T` and it works fine, but it
34/// could have trouble when complex types with higher-ranked binders and the
35/// like are used. This is a particular challenge since this function is invoked
36/// very late in inference and hence cannot make use of the normal inference
37/// machinery.
38#[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("extract_verify_if_eq",
                                    "rustc_infer::infer::outlives::test_type_match",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_infer/src/infer/outlives/test_type_match.rs"),
                                    ::tracing_core::__macro_support::Option::Some(38u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_infer::infer::outlives::test_type_match"),
                                    ::tracing_core::field::FieldSet::new(&["verify_if_eq_b",
                                                    "test_ty"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&verify_if_eq_b)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&test_ty)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: Option<ty::Region<'tcx>> =
                loop {};
            return __tracing_attr_fake_return;
        }
        {
            if !!verify_if_eq_b.has_escaping_bound_vars() {
                ::core::panicking::panic("assertion failed: !verify_if_eq_b.has_escaping_bound_vars()")
            };
            let mut m = MatchAgainstHigherRankedOutlives::new(tcx);
            let verify_if_eq = verify_if_eq_b.skip_binder();
            m.relate(verify_if_eq.ty, test_ty).ok()?;
            if let ty::RegionKind::ReBound(index_kind, br) =
                    verify_if_eq.bound.kind() {
                if !#[allow(non_exhaustive_omitted_patterns)] match index_kind
                            {
                            ty::BoundVarIndexKind::Bound(ty::INNERMOST) => true,
                            _ => false,
                        } {
                    ::core::panicking::panic("assertion failed: matches!(index_kind, ty::BoundVarIndexKind::Bound(ty::INNERMOST))")
                };
                match m.map.get(&br) {
                    Some(&r) => Some(r),
                    None => { Some(tcx.lifetimes.re_static) }
                }
            } else { Some(verify_if_eq.bound) }
        }
    }
}#[instrument(level = "debug", skip(tcx))]
39pub fn extract_verify_if_eq<'tcx>(
40    tcx: TyCtxt<'tcx>,
41    verify_if_eq_b: &ty::Binder<'tcx, VerifyIfEq<'tcx>>,
42    test_ty: Ty<'tcx>,
43) -> Option<ty::Region<'tcx>> {
44    assert!(!verify_if_eq_b.has_escaping_bound_vars());
45    let mut m = MatchAgainstHigherRankedOutlives::new(tcx);
46    let verify_if_eq = verify_if_eq_b.skip_binder();
47    m.relate(verify_if_eq.ty, test_ty).ok()?;
48
49    if let ty::RegionKind::ReBound(index_kind, br) = verify_if_eq.bound.kind() {
50        assert!(matches!(index_kind, ty::BoundVarIndexKind::Bound(ty::INNERMOST)));
51        match m.map.get(&br) {
52            Some(&r) => Some(r),
53            None => {
54                // If there is no mapping, then this region is unconstrained.
55                // In that case, we escalate to `'static`.
56                Some(tcx.lifetimes.re_static)
57            }
58        }
59    } else {
60        // The region does not contain any bound variables, so we don't need
61        // to do any instantiation.
62        //
63        // Example:
64        //
65        // for<'a> <T as Foo<'a>>::Item: 'b
66        //
67        // In this case, we've now matched and found a value for
68        // `'a`, but it doesn't affect the bound `'b`.
69        Some(verify_if_eq.bound)
70    }
71}
72
73/// True if a (potentially higher-ranked) outlives
74#[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("can_match_erased_ty",
                                    "rustc_infer::infer::outlives::test_type_match",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_infer/src/infer/outlives/test_type_match.rs"),
                                    ::tracing_core::__macro_support::Option::Some(74u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_infer::infer::outlives::test_type_match"),
                                    ::tracing_core::field::FieldSet::new(&["outlives_predicate",
                                                    "erased_ty"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&outlives_predicate)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&erased_ty)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: bool = loop {};
            return __tracing_attr_fake_return;
        }
        {
            if !!outlives_predicate.has_escaping_bound_vars() {
                ::core::panicking::panic("assertion failed: !outlives_predicate.has_escaping_bound_vars()")
            };
            let erased_outlives_predicate =
                tcx.erase_and_anonymize_regions(outlives_predicate);
            let outlives_ty = erased_outlives_predicate.skip_binder().0;
            if outlives_ty == erased_ty {
                true
            } else {
                MatchAgainstHigherRankedOutlives::new(tcx).relate(outlives_ty,
                        erased_ty).is_ok()
            }
        }
    }
}#[instrument(level = "debug", skip(tcx))]
75pub(super) fn can_match_erased_ty<'tcx>(
76    tcx: TyCtxt<'tcx>,
77    outlives_predicate: ty::Binder<'tcx, ty::TypeOutlivesPredicate<'tcx>>,
78    erased_ty: Ty<'tcx>,
79) -> bool {
80    assert!(!outlives_predicate.has_escaping_bound_vars());
81    let erased_outlives_predicate = tcx.erase_and_anonymize_regions(outlives_predicate);
82    let outlives_ty = erased_outlives_predicate.skip_binder().0;
83    if outlives_ty == erased_ty {
84        // pointless micro-optimization
85        true
86    } else {
87        MatchAgainstHigherRankedOutlives::new(tcx).relate(outlives_ty, erased_ty).is_ok()
88    }
89}
90
91struct MatchAgainstHigherRankedOutlives<'tcx> {
92    tcx: TyCtxt<'tcx>,
93    pattern_depth: ty::DebruijnIndex,
94    map: FxHashMap<ty::BoundRegion, ty::Region<'tcx>>,
95}
96
97impl<'tcx> MatchAgainstHigherRankedOutlives<'tcx> {
98    fn new(tcx: TyCtxt<'tcx>) -> MatchAgainstHigherRankedOutlives<'tcx> {
99        MatchAgainstHigherRankedOutlives {
100            tcx,
101            pattern_depth: ty::INNERMOST,
102            map: FxHashMap::default(),
103        }
104    }
105}
106
107impl<'tcx> MatchAgainstHigherRankedOutlives<'tcx> {
108    /// Creates the "Error" variant that signals "no match".
109    fn no_match<T>(&self) -> RelateResult<'tcx, T> {
110        Err(TypeError::Mismatch)
111    }
112
113    /// Binds the pattern variable `br` to `value`; returns an `Err` if the pattern
114    /// is already bound to a different value.
115    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("bind",
                                    "rustc_infer::infer::outlives::test_type_match",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_infer/src/infer/outlives/test_type_match.rs"),
                                    ::tracing_core::__macro_support::Option::Some(115u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_infer::infer::outlives::test_type_match"),
                                    ::tracing_core::field::FieldSet::new(&["br", "value"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&br)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&value)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return:
                    RelateResult<'tcx, ty::Region<'tcx>> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            match self.map.entry(br) {
                Entry::Occupied(entry) => {
                    if *entry.get() == value {
                        Ok(value)
                    } else { self.no_match() }
                }
                Entry::Vacant(entry) => { entry.insert(value); Ok(value) }
            }
        }
    }
}#[instrument(level = "trace", skip(self))]
116    fn bind(
117        &mut self,
118        br: ty::BoundRegion,
119        value: ty::Region<'tcx>,
120    ) -> RelateResult<'tcx, ty::Region<'tcx>> {
121        match self.map.entry(br) {
122            Entry::Occupied(entry) => {
123                if *entry.get() == value {
124                    Ok(value)
125                } else {
126                    self.no_match()
127                }
128            }
129            Entry::Vacant(entry) => {
130                entry.insert(value);
131                Ok(value)
132            }
133        }
134    }
135}
136
137impl<'tcx> TypeRelation<TyCtxt<'tcx>> for MatchAgainstHigherRankedOutlives<'tcx> {
138    fn cx(&self) -> TyCtxt<'tcx> {
139        self.tcx
140    }
141
142    fn relate_ty_args(
143        &mut self,
144        a_ty: Ty<'tcx>,
145        _: Ty<'tcx>,
146        def_id: DefId,
147        a_args: ty::GenericArgsRef<'tcx>,
148        b_args: ty::GenericArgsRef<'tcx>,
149        _: impl FnOnce(ty::GenericArgsRef<'tcx>) -> Ty<'tcx>,
150    ) -> RelateResult<'tcx, Ty<'tcx>> {
151        let variances = self.cx().variances_of(def_id);
152        relate_args_with_variances(self, variances, a_args, b_args)?;
153        Ok(a_ty)
154    }
155
156    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("relate_with_variance",
                                    "rustc_infer::infer::outlives::test_type_match",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_infer/src/infer/outlives/test_type_match.rs"),
                                    ::tracing_core::__macro_support::Option::Some(156u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_infer::infer::outlives::test_type_match"),
                                    ::tracing_core::field::FieldSet::new(&["variance", "a",
                                                    "b"], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&variance)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&a)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&b)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: RelateResult<'tcx, T> = loop {};
            return __tracing_attr_fake_return;
        }
        { if variance != ty::Bivariant { self.relate(a, b) } else { Ok(a) } }
    }
}#[instrument(level = "trace", skip(self))]
157    fn relate_with_variance<T: Relate<TyCtxt<'tcx>>>(
158        &mut self,
159        variance: ty::Variance,
160        _: ty::VarianceDiagInfo<TyCtxt<'tcx>>,
161        a: T,
162        b: T,
163    ) -> RelateResult<'tcx, T> {
164        // FIXME(@lcnr): This is weird. We are ignoring the ambient variance
165        // here, effectively treating everything as being in either a covariant
166        // or contravariant context.
167        //
168        // Opaque types args have lifetime parameters.
169        // We must not check them to be equal, as we never insert anything to make them so.
170        if variance != ty::Bivariant { self.relate(a, b) } else { Ok(a) }
171    }
172
173    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("regions",
                                    "rustc_infer::infer::outlives::test_type_match",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_infer/src/infer/outlives/test_type_match.rs"),
                                    ::tracing_core::__macro_support::Option::Some(173u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_infer::infer::outlives::test_type_match"),
                                    ::tracing_core::field::FieldSet::new(&["pattern", "value"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&pattern)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&value)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return:
                    RelateResult<'tcx, ty::Region<'tcx>> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            if let ty::RegionKind::ReBound(ty::BoundVarIndexKind::Bound(depth),
                        br) = pattern.kind() && depth == self.pattern_depth {
                self.bind(br, value)
            } else if pattern == value {
                Ok(pattern)
            } else { self.no_match() }
        }
    }
}#[instrument(skip(self), level = "trace")]
174    fn regions(
175        &mut self,
176        pattern: ty::Region<'tcx>,
177        value: ty::Region<'tcx>,
178    ) -> RelateResult<'tcx, ty::Region<'tcx>> {
179        if let ty::RegionKind::ReBound(ty::BoundVarIndexKind::Bound(depth), br) = pattern.kind()
180            && depth == self.pattern_depth
181        {
182            self.bind(br, value)
183        } else if pattern == value {
184            Ok(pattern)
185        } else {
186            self.no_match()
187        }
188    }
189
190    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("tys",
                                    "rustc_infer::infer::outlives::test_type_match",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_infer/src/infer/outlives/test_type_match.rs"),
                                    ::tracing_core::__macro_support::Option::Some(190u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_infer::infer::outlives::test_type_match"),
                                    ::tracing_core::field::FieldSet::new(&["pattern", "value"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&pattern)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&value)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: RelateResult<'tcx, Ty<'tcx>> =
                loop {};
            return __tracing_attr_fake_return;
        }
        {
            if #[allow(non_exhaustive_omitted_patterns)] match pattern.kind()
                    {
                    ty::Error(_) | ty::Bound(..) => true,
                    _ => false,
                } {
                self.no_match()
            } else if pattern == value {
                Ok(pattern)
            } else { relate::structurally_relate_tys(self, pattern, value) }
        }
    }
}#[instrument(skip(self), level = "trace")]
191    fn tys(&mut self, pattern: Ty<'tcx>, value: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
192        // FIXME(non_lifetime_binders): What to do here?
193        if matches!(pattern.kind(), ty::Error(_) | ty::Bound(..)) {
194            // Unlike normal `TypeRelation` rules, `ty::Error` does not equal any type.
195            self.no_match()
196        } else if pattern == value {
197            Ok(pattern)
198        } else {
199            relate::structurally_relate_tys(self, pattern, value)
200        }
201    }
202
203    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("consts",
                                    "rustc_infer::infer::outlives::test_type_match",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_infer/src/infer/outlives/test_type_match.rs"),
                                    ::tracing_core::__macro_support::Option::Some(203u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_infer::infer::outlives::test_type_match"),
                                    ::tracing_core::field::FieldSet::new(&["pattern", "value"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&pattern)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&value)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return:
                    RelateResult<'tcx, ty::Const<'tcx>> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            if pattern == value {
                Ok(pattern)
            } else {
                relate::structurally_relate_consts(self, pattern, value)
            }
        }
    }
}#[instrument(skip(self), level = "trace")]
204    fn consts(
205        &mut self,
206        pattern: ty::Const<'tcx>,
207        value: ty::Const<'tcx>,
208    ) -> RelateResult<'tcx, ty::Const<'tcx>> {
209        if pattern == value {
210            Ok(pattern)
211        } else {
212            relate::structurally_relate_consts(self, pattern, value)
213        }
214    }
215
216    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("binders",
                                    "rustc_infer::infer::outlives::test_type_match",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_infer/src/infer/outlives/test_type_match.rs"),
                                    ::tracing_core::__macro_support::Option::Some(216u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_infer::infer::outlives::test_type_match"),
                                    ::tracing_core::field::FieldSet::new(&["pattern", "value"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&pattern)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&value)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return:
                    RelateResult<'tcx, ty::Binder<'tcx, T>> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            self.pattern_depth.shift_in(1);
            let result =
                Ok(pattern.rebind(self.relate(pattern.skip_binder(),
                                value.skip_binder())?));
            self.pattern_depth.shift_out(1);
            result
        }
    }
}#[instrument(skip(self), level = "trace")]
217    fn binders<T>(
218        &mut self,
219        pattern: ty::Binder<'tcx, T>,
220        value: ty::Binder<'tcx, T>,
221    ) -> RelateResult<'tcx, ty::Binder<'tcx, T>>
222    where
223        T: Relate<TyCtxt<'tcx>>,
224    {
225        self.pattern_depth.shift_in(1);
226        let result = Ok(pattern.rebind(self.relate(pattern.skip_binder(), value.skip_binder())?));
227        self.pattern_depth.shift_out(1);
228        result
229    }
230}