Skip to main content

rustc_hir_typeck/
lib.rs

1// tidy-alphabetical-start
2#![cfg_attr(bootstrap, feature(never_type))]
3#![feature(deref_patterns)]
4#![feature(iter_intersperse)]
5#![feature(iter_order_by)]
6#![feature(option_into_flat_iter)]
7#![feature(option_reference_flattening)]
8#![feature(trim_prefix_suffix)]
9// tidy-alphabetical-end
10
11mod _match;
12mod autoderef;
13mod callee;
14// Used by clippy;
15pub mod cast;
16mod check;
17mod closure;
18mod coercion;
19mod demand;
20mod diagnostics;
21mod diverges;
22mod expectation;
23mod expr;
24mod inline_asm;
25// Used by clippy;
26pub mod expr_use_visitor;
27mod fallback;
28mod fn_ctxt;
29mod gather_locals;
30mod intrinsicck;
31mod loops;
32mod method;
33mod naked_functions;
34mod op;
35mod opaque_types;
36mod pat;
37mod place_op;
38mod typeck_root_ctxt;
39mod upvar;
40mod writeback;
41
42pub use coercion::can_coerce;
43use fn_ctxt::FnCtxt;
44use rustc_data_structures::unord::UnordSet;
45use rustc_errors::codes::*;
46use rustc_errors::{Applicability, Diag, ErrorGuaranteed, struct_span_code_err};
47use rustc_hir as hir;
48use rustc_hir::def::{DefKind, Res};
49use rustc_hir::{HirId, HirIdMap, Node};
50use rustc_hir_analysis::check::check_abi;
51use rustc_hir_analysis::hir_ty_lowering::HirTyLowerer;
52use rustc_infer::traits::{ObligationCauseCode, ObligationInspector, TraitEngine, WellFormedLoc};
53use rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrFlags;
54use rustc_middle::query::Providers;
55use rustc_middle::ty::{self, FnSigKind, Ty, TyCtxt, Unnormalized};
56use rustc_session::config;
57use rustc_span::def_id::LocalDefId;
58use rustc_span::{Span, bug, span_bug};
59use tracing::{debug, instrument};
60use typeck_root_ctxt::TypeckRootCtxt;
61
62use crate::check::check_fn;
63use crate::coercion::CoerceMany;
64use crate::diverges::Diverges;
65use crate::expectation::Expectation;
66use crate::fn_ctxt::LoweredTy;
67use crate::gather_locals::GatherLocalsVisitor;
68
69#[macro_export]
70macro_rules! type_error_struct {
71    ($dcx:expr, $span:expr, $typ:expr, $code:expr, $($message:tt)*) => ({
72        let mut err = rustc_errors::struct_span_code_err!($dcx, $span, $code, $($message)*);
73
74        if $typ.references_error() {
75            err.downgrade_to_delayed_bug();
76        }
77
78        err
79    })
80}
81
82fn used_trait_imports(tcx: TyCtxt<'_>, def_id: LocalDefId) -> &UnordSet<LocalDefId> {
83    &tcx.typeck(def_id).used_trait_imports
84}
85
86fn typeck_root<'tcx>(tcx: TyCtxt<'tcx>, def_id: LocalDefId) -> &'tcx ty::TypeckResults<'tcx> {
87    typeck_with_inspect(tcx, def_id, None)
88}
89
90/// Same as `typeck` but `inspect` is invoked on evaluation of each root obligation.
91/// Inspecting obligations only works with the new trait solver.
92/// This function is *only to be used* by external tools, it should not be
93/// called from within rustc. Note, this is not a query, and thus is not cached.
94pub fn inspect_typeck<'tcx>(
95    tcx: TyCtxt<'tcx>,
96    def_id: LocalDefId,
97    inspect: ObligationInspector<'tcx>,
98) -> &'tcx ty::TypeckResults<'tcx> {
99    // Closures' typeck results come from their outermost function,
100    // as they are part of the same "inference environment".
101    let typeck_root_def_id = tcx.typeck_root_def_id_local(def_id);
102    if typeck_root_def_id != def_id {
103        return tcx.typeck(typeck_root_def_id);
104    }
105
106    typeck_with_inspect(tcx, def_id, Some(inspect))
107}
108
109{}
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("typeck_with_inspect",
                                "rustc_hir_typeck", ::tracing::Level::DEBUG,
                                ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/lib.rs"),
                                ::tracing_core::__macro_support::Option::Some(109u32),
                                ::tracing_core::__macro_support::Option::Some("rustc_hir_typeck"),
                                ::tracing_core::field::FieldSet::new(&[{
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("def_id")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("def_id");
                                                    NAME.as_str()
                                                }], ::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};
                            meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&def_id)
                                                        as &dyn ::tracing::field::Value))])
                        })
            } else {
                let span =
                    ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                {};
                span
            }
        };
    __tracing_attr_guard = __tracing_attr_span.enter();
}
#[allow(clippy :: redundant_closure_call)]
let x =
    (move ||
                {

                    #[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:
                                &'tcx ty::TypeckResults<'tcx> = loop {};
                        return __tracing_attr_fake_return;
                    }
                    {
                        if !!tcx.is_typeck_child(def_id.to_def_id()) {
                            ::core::panicking::panic("assertion failed: !tcx.is_typeck_child(def_id.to_def_id())")
                        };
                        let id = tcx.local_def_id_to_hir_id(def_id);
                        let node = tcx.hir_node(id);
                        let span = tcx.def_span(def_id);
                        let body_id =
                            node.body_id().unwrap_or_else(||
                                    {
                                        bug_impl(Some(span),
                                            format_args!("can\'t type-check body of {0:?}", def_id),
                                            Location::caller());
                                    });
                        let body = tcx.hir_body(body_id);
                        let param_env = tcx.param_env(def_id);
                        let root_ctxt = TypeckRootCtxt::new(tcx, def_id);
                        if let Some(inspector) = inspector {
                            root_ctxt.infcx.attach_obligation_inspector(inspector);
                        }
                        let mut fcx = FnCtxt::new(&root_ctxt, param_env, def_id);
                        if let hir::Node::Item(hir::Item {
                                kind: hir::ItemKind::GlobalAsm { .. }, .. }) = node {
                            let ty = fcx.check_expr(body.value);
                            fcx.write_ty(id, ty);
                        } else if let Some(hir::FnSig { header, decl, span: _ }) =
                                node.fn_sig() {
                            let fn_sig =
                                if decl.output.is_suggestable_infer_ty().is_some() {
                                    fcx.lowerer().lower_fn_ty(id, header.safety(), header.abi,
                                        decl, None, None)
                                } else {
                                    tcx.fn_sig(def_id).instantiate_identity().skip_norm_wip()
                                };
                            check_abi(tcx, id, span, fn_sig.abi());
                            loops::check(tcx, def_id, body);
                            let mut fn_sig =
                                tcx.liberate_late_bound_regions(def_id.to_def_id(), fn_sig);
                            let arg_span =
                                |idx|
                                    decl.inputs.get(idx).map_or(decl.output.span(),
                                        |arg: &hir::Ty<'_>| arg.span);
                            fn_sig.inputs_and_output =
                                tcx.mk_type_list_from_iter(fn_sig.inputs_and_output.iter().enumerate().map(|(idx,
                                                ty)|
                                            fcx.normalize(arg_span(idx), Unnormalized::new_wip(ty))));
                            if tcx.codegen_fn_attrs(def_id).flags.contains(CodegenFnAttrFlags::NAKED)
                                {
                                naked_functions::typeck_naked_fn(tcx, def_id, body);
                            }
                            check_fn(&mut fcx, fn_sig, None, decl, def_id, body,
                                tcx.features().unsized_fn_params());
                        } else {
                            let expected_type =
                                if let Some(infer_ty) = infer_type_if_missing(&fcx, node) {
                                    infer_ty
                                } else if let Some(ty) = node.ty() &&
                                        ty.is_suggestable_infer_ty() {
                                    fcx.lowerer().lower_ty(ty)
                                } else {
                                    tcx.type_of(def_id).instantiate_identity().skip_norm_wip()
                                };
                            loops::check(tcx, def_id, body);
                            let expected_type =
                                fcx.normalize(body.value.span,
                                    Unnormalized::new_wip(expected_type));
                            let wf_code =
                                ObligationCauseCode::WellFormed(Some(WellFormedLoc::Ty(def_id)));
                            fcx.register_wf_obligation(expected_type.into(),
                                body.value.span, wf_code);
                            if let hir::Node::AnonConst(_) = node {
                                fcx.require_type_is_sized(expected_type, body.value.span,
                                    ObligationCauseCode::SizedConstOrStatic);
                            }
                            fcx.check_expr_coercible_to_type_or_error(body.value,
                                expected_type, None,
                                |err, _|
                                    {
                                        extend_err_with_const_context(err, tcx, node,
                                            expected_type);
                                    });
                            fcx.write_ty(id, expected_type);
                        };
                        fcx.check_repeat_exprs();
                        if fcx.next_trait_solver() {
                            fcx.try_handle_opaque_type_uses_next();
                        }
                        fcx.type_inference_fallback();
                        fcx.check_casts();
                        fcx.select_obligations_where_possible(|_| {});
                        fcx.closure_analyze(body);
                        if !fcx.deferred_call_resolutions.borrow().is_empty() {
                            ::core::panicking::panic("assertion failed: fcx.deferred_call_resolutions.borrow().is_empty()")
                        };
                        for (ty, span, code) in
                            fcx.deferred_sized_obligations.borrow_mut().drain(..) {
                            let ty = fcx.normalize(span, Unnormalized::new_wip(ty));
                            fcx.require_type_is_sized(ty, span, code);
                        }
                        fcx.select_obligations_where_possible(|_| {});
                        {
                            use ::tracing::__macro_support::Callsite as _;
                            static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                                {
                                    static META: ::tracing::Metadata<'static> =
                                        {
                                            ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/lib.rs:253",
                                                "rustc_hir_typeck", ::tracing::Level::DEBUG,
                                                ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/lib.rs"),
                                                ::tracing_core::__macro_support::Option::Some(253u32),
                                                ::tracing_core::__macro_support::Option::Some("rustc_hir_typeck"),
                                                ::tracing_core::field::FieldSet::new(&[{
                                                                    const NAME:
                                                                        ::tracing::__macro_support::FieldName<{
                                                                            ::tracing::__macro_support::FieldName::len("pending_obligations")
                                                                        }> =
                                                                        ::tracing::__macro_support::FieldName::new("pending_obligations");
                                                                    NAME.as_str()
                                                                }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                                ::tracing::metadata::Kind::EVENT)
                                        };
                                    ::tracing::callsite::DefaultCallsite::new(&META)
                                };
                            let enabled =
                                ::tracing::Level::DEBUG <=
                                            ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                        ::tracing::Level::DEBUG <=
                                            ::tracing::level_filters::LevelFilter::current() &&
                                    {
                                        let interest = __CALLSITE.interest();
                                        !interest.is_never() &&
                                            ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                                interest)
                                    };
                            if enabled {
                                (|value_set: ::tracing::field::ValueSet|
                                            {
                                                let meta = __CALLSITE.metadata();
                                                ::tracing::Event::dispatch(meta, &value_set);
                                                ;
                                            })({
                                        #[allow(unused_imports)]
                                        use ::tracing::field::{debug, display, Value};
                                        __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&fcx.fulfillment_cx.borrow().pending_obligations())
                                                                    as &dyn ::tracing::field::Value))])
                                    });
                            } else { ; }
                        };
                        if fcx.next_trait_solver() {
                            fcx.handle_opaque_type_uses_next();
                        }
                        fcx.drain_stalled_coroutine_obligations();
                        if fcx.infcx.tainted_by_errors().is_none() {
                            fcx.report_ambiguity_errors();
                        }
                        fcx.check_asms();
                        let typeck_results = fcx.resolve_type_vars_in_body(body);
                        fcx.detect_opaque_types_added_during_writeback();
                        {
                            match (&typeck_results.hir_owner, &id.owner) {
                                (left_val, right_val) => {
                                    if !(*left_val == *right_val) {
                                        let kind = ::core::panicking::AssertKind::Eq;
                                        ::core::panicking::assert_failed(kind, &*left_val,
                                            &*right_val, ::core::option::Option::None);
                                    }
                                }
                            }
                        };
                        typeck_results
                    }
                })();
{
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/lib.rs:109",
                        "rustc_hir_typeck", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/lib.rs"),
                        ::tracing_core::__macro_support::Option::Some(109u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_hir_typeck"),
                        ::tracing_core::field::FieldSet::new(&[{
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("return")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("return");
                                            NAME.as_str()
                                        }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&x)
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};
x;#[instrument(level = "debug", skip(tcx, inspector), ret)]
110fn typeck_with_inspect<'tcx>(
111    tcx: TyCtxt<'tcx>,
112    def_id: LocalDefId,
113    inspector: Option<ObligationInspector<'tcx>>,
114) -> &'tcx ty::TypeckResults<'tcx> {
115    assert!(!tcx.is_typeck_child(def_id.to_def_id()));
116
117    let id = tcx.local_def_id_to_hir_id(def_id);
118    let node = tcx.hir_node(id);
119    let span = tcx.def_span(def_id);
120
121    // Figure out what primary body this item has.
122    let body_id = node.body_id().unwrap_or_else(|| {
123        span_bug!(span, "can't type-check body of {:?}", def_id);
124    });
125    let body = tcx.hir_body(body_id);
126
127    let param_env = tcx.param_env(def_id);
128
129    let root_ctxt = TypeckRootCtxt::new(tcx, def_id);
130    if let Some(inspector) = inspector {
131        root_ctxt.infcx.attach_obligation_inspector(inspector);
132    }
133    let mut fcx = FnCtxt::new(&root_ctxt, param_env, def_id);
134
135    if let hir::Node::Item(hir::Item { kind: hir::ItemKind::GlobalAsm { .. }, .. }) = node {
136        // Check the fake body of a global ASM. There's not much to do here except
137        // for visit the asm expr of the body.
138        let ty = fcx.check_expr(body.value);
139        fcx.write_ty(id, ty);
140    } else if let Some(hir::FnSig { header, decl, span: _ }) = node.fn_sig() {
141        let fn_sig = if decl.output.is_suggestable_infer_ty().is_some() {
142            // In the case that we're recovering `fn() -> W<_>` or some other return
143            // type that has an infer in it, lower the type directly so that it'll
144            // be correctly filled with infer. We'll use this inference to provide
145            // a suggestion later on.
146            fcx.lowerer().lower_fn_ty(id, header.safety(), header.abi, decl, None, None)
147        } else {
148            tcx.fn_sig(def_id).instantiate_identity().skip_norm_wip()
149        };
150
151        check_abi(tcx, id, span, fn_sig.abi());
152
153        loops::check(tcx, def_id, body);
154
155        // Compute the function signature from point of view of inside the fn.
156        let mut fn_sig = tcx.liberate_late_bound_regions(def_id.to_def_id(), fn_sig);
157
158        // Normalize the input and output types one at a time, using a different
159        // `WellFormedLoc` for each. We cannot call `normalize_associated_types`
160        // on the entire `FnSig`, since this would use the same `WellFormedLoc`
161        // for each type, preventing the HIR wf check from generating
162        // a nice error message.
163        let arg_span =
164            |idx| decl.inputs.get(idx).map_or(decl.output.span(), |arg: &hir::Ty<'_>| arg.span);
165
166        fn_sig.inputs_and_output = tcx.mk_type_list_from_iter(
167            fn_sig
168                .inputs_and_output
169                .iter()
170                .enumerate()
171                .map(|(idx, ty)| fcx.normalize(arg_span(idx), Unnormalized::new_wip(ty))),
172        );
173
174        if tcx.codegen_fn_attrs(def_id).flags.contains(CodegenFnAttrFlags::NAKED) {
175            naked_functions::typeck_naked_fn(tcx, def_id, body);
176        }
177
178        check_fn(&mut fcx, fn_sig, None, decl, def_id, body, tcx.features().unsized_fn_params());
179    } else {
180        let expected_type = if let Some(infer_ty) = infer_type_if_missing(&fcx, node) {
181            infer_ty
182        } else if let Some(ty) = node.ty()
183            && ty.is_suggestable_infer_ty()
184        {
185            // In the case that we're recovering `const X: [T; _]` or some other
186            // type that has an infer in it, lower the type directly so that it'll
187            // be correctly filled with infer. We'll use this inference to provide
188            // a suggestion later on.
189            fcx.lowerer().lower_ty(ty)
190        } else {
191            tcx.type_of(def_id).instantiate_identity().skip_norm_wip()
192        };
193
194        loops::check(tcx, def_id, body);
195
196        let expected_type = fcx.normalize(body.value.span, Unnormalized::new_wip(expected_type));
197
198        let wf_code = ObligationCauseCode::WellFormed(Some(WellFormedLoc::Ty(def_id)));
199        fcx.register_wf_obligation(expected_type.into(), body.value.span, wf_code);
200
201        if let hir::Node::AnonConst(_) = node {
202            fcx.require_type_is_sized(
203                expected_type,
204                body.value.span,
205                ObligationCauseCode::SizedConstOrStatic,
206            );
207        }
208
209        fcx.check_expr_coercible_to_type_or_error(body.value, expected_type, None, |err, _| {
210            extend_err_with_const_context(err, tcx, node, expected_type);
211        });
212
213        fcx.write_ty(id, expected_type);
214    };
215
216    // Whether to check repeat exprs before/after inference fallback is somewhat
217    // arbitrary of a decision as neither option is strictly more permissive than
218    // the other. However, we opt to check repeat exprs first as errors from not
219    // having inferred array lengths yet seem less confusing than errors from inference
220    // fallback arbitrarily inferring something incompatible with `Copy` inference
221    // side effects.
222    //
223    // FIXME(#140855): This should also be forwards compatible with moving
224    // repeat expr checks to a custom goal kind or using marker traits in
225    // the future.
226    fcx.check_repeat_exprs();
227
228    // We need to handle opaque types before emitting ambiguity errors as applying
229    // defining uses may guide type inference.
230    if fcx.next_trait_solver() {
231        fcx.try_handle_opaque_type_uses_next();
232    }
233
234    fcx.type_inference_fallback();
235
236    // Even though coercion casts provide type hints, we check casts after fallback for
237    // backwards compatibility. This makes fallback a stronger type hint than a cast coercion.
238    fcx.check_casts();
239    fcx.select_obligations_where_possible(|_| {});
240
241    // Closure and coroutine analysis may run after fallback
242    // because they don't constrain other type variables.
243    fcx.closure_analyze(body);
244    assert!(fcx.deferred_call_resolutions.borrow().is_empty());
245
246    for (ty, span, code) in fcx.deferred_sized_obligations.borrow_mut().drain(..) {
247        let ty = fcx.normalize(span, Unnormalized::new_wip(ty));
248        fcx.require_type_is_sized(ty, span, code);
249    }
250
251    fcx.select_obligations_where_possible(|_| {});
252
253    debug!(pending_obligations = ?fcx.fulfillment_cx.borrow().pending_obligations());
254
255    // We need to handle opaque types before emitting ambiguity errors as applying
256    // defining uses may guide type inference.
257    if fcx.next_trait_solver() {
258        fcx.handle_opaque_type_uses_next();
259    }
260
261    // This must be the last thing before `report_ambiguity_errors` below except `select_obligations_where_possible`.
262    // So don't put anything after this.
263    fcx.drain_stalled_coroutine_obligations();
264    if fcx.infcx.tainted_by_errors().is_none() {
265        fcx.report_ambiguity_errors();
266    }
267
268    fcx.check_asms();
269
270    let typeck_results = fcx.resolve_type_vars_in_body(body);
271
272    fcx.detect_opaque_types_added_during_writeback();
273
274    // Consistency check our TypeckResults instance can hold all ItemLocalIds
275    // it will need to hold.
276    assert_eq!(typeck_results.hir_owner, id.owner);
277
278    typeck_results
279}
280
281fn extend_err_with_const_context(
282    err: &mut Diag<'_>,
283    tcx: TyCtxt<'_>,
284    node: hir::Node<'_>,
285    expected_ty: Ty<'_>,
286) {
287    match node {
288        hir::Node::ImplItem(hir::ImplItem { kind: hir::ImplItemKind::Const(ty, _), .. })
289        | hir::Node::TraitItem(hir::TraitItem { kind: hir::TraitItemKind::Const(ty, _), .. }) => {
290            // Point at the `Type` in `const NAME: Type = value;`.
291            err.span_label(ty.span, "expected because of the type of the associated constant");
292        }
293        hir::Node::Item(hir::Item { kind: hir::ItemKind::Const(_, _, ty, _), .. }) => {
294            // Point at the `Type` in `const NAME: Type = value;`.
295            err.span_label(ty.span, "expected because of the type of the constant");
296        }
297        hir::Node::Item(hir::Item { kind: hir::ItemKind::Static(_, _, ty, _), .. }) => {
298            // Point at the `Type` in `static NAME: Type = value;`.
299            err.span_label(ty.span, "expected because of the type of the static");
300        }
301        hir::Node::AnonConst(anon)
302            if let hir::Node::ConstArg(parent) = tcx.parent_hir_node(anon.hir_id)
303                && let hir::Node::Ty(parent) = tcx.parent_hir_node(parent.hir_id)
304                && let hir::TyKind::Array(_ty, _len) = parent.kind =>
305        {
306            // `[type; len]` in type context.
307            err.note("array length can only be `usize`");
308        }
309        hir::Node::AnonConst(anon)
310            if let hir::Node::ConstArg(parent) = tcx.parent_hir_node(anon.hir_id)
311                && let hir::Node::Expr(parent) = tcx.parent_hir_node(parent.hir_id)
312                && let hir::ExprKind::Repeat(_ty, _len) = parent.kind =>
313        {
314            // `[type; len]` in expr context.
315            err.note("array length can only be `usize`");
316        }
317        // FIXME: support method calls too.
318        hir::Node::AnonConst(anon)
319            if let hir::Node::ConstArg(parent) = tcx.parent_hir_node(anon.hir_id)
320                && let Some(path) = tcx.parent_hir_node(parent.hir_id).path()
321                && let hir::QPath::Resolved(_, path) = path
322                && let Res::Def(_, def_id) = path.res =>
323        {
324            // `foo<N>()`, point at the const parameter in the definition of `foo`.
325            if let Some(i) =
326                path.segments.last().and_then(|segment| segment.args).and_then(|args| {
327                    args.args.iter().position(|arg| {
328                        #[allow(non_exhaustive_omitted_patterns)] match arg {
    hir::GenericArg::Const(arg) if arg.hir_id == parent.hir_id => true,
    _ => false,
}matches!(arg, hir::GenericArg::Const(arg) if arg.hir_id == parent.hir_id)
329                    })
330                })
331            {
332                let generics = tcx.generics_of(def_id);
333                let param = &generics.param_at(i, tcx);
334                let sp = tcx.def_span(param.def_id);
335                err.span_note(sp, "expected because of the type of the const parameter");
336            }
337        }
338        hir::Node::AnonConst(anon)
339            if let hir::Node::Variant(_variant) = tcx.parent_hir_node(anon.hir_id) =>
340        {
341            // FIXME: point at `repr` when present in the type.
342            err.note(
343                "enum variant discriminant can only be of a primitive type compatible with the \
344                 enum's `repr`",
345            );
346        }
347        hir::Node::AnonConst(anon)
348            if let hir::Node::ConstArg(parent) = tcx.parent_hir_node(anon.hir_id)
349                && let hir::Node::GenericParam(param) = tcx.parent_hir_node(parent.hir_id)
350                && let hir::GenericParamKind::Const { ty, .. } = param.kind =>
351        {
352            // `fn foo<const N: usize = ()>` point at the `usize`.
353            err.span_label(ty.span, "expected because of the type of the const parameter");
354        }
355        hir::Node::AnonConst(anon)
356            if let hir::Node::ConstArg(parent) = tcx.parent_hir_node(anon.hir_id)
357                && let hir::Node::TyPat(ty_pat) = tcx.parent_hir_node(parent.hir_id)
358                && let hir::Node::Ty(ty) = tcx.parent_hir_node(ty_pat.hir_id)
359                && let hir::TyKind::Pat(ty, _) = ty.kind =>
360        {
361            // Point at `char` in `pattern_type!(char is 1..=1)`.
362            err.span_label(ty.span, "the pattern must match the type");
363        }
364        hir::Node::AnonConst(anon)
365            if let hir::Node::Field(_) = tcx.parent_hir_node(anon.hir_id)
366                && let ty::Param(_) = expected_ty.kind() =>
367        {
368            err.note(
369                "the type of default fields referencing type parameters can't be assumed inside \
370                 the struct defining them",
371            );
372        }
373        _ => {}
374    }
375}
376
377fn infer_type_if_missing<'tcx>(fcx: &FnCtxt<'_, 'tcx>, node: Node<'tcx>) -> Option<Ty<'tcx>> {
378    let tcx = fcx.tcx;
379    let def_id = fcx.body_def_id;
380    let expected_type = if let Some(&hir::Ty { kind: hir::TyKind::Infer(()), span, .. }) = node.ty()
381    {
382        if let Some(item) = tcx.opt_associated_item(def_id.into())
383            && let ty::AssocKind::Const { .. } = item.kind
384            && let ty::AssocContainer::TraitImpl(Ok(trait_item_def_id)) = item.container
385        {
386            let impl_def_id = item.container_id(tcx);
387            let impl_trait_ref =
388                tcx.impl_trait_ref(impl_def_id).instantiate_identity().skip_norm_wip();
389            let args = ty::GenericArgs::identity_for_item(tcx, def_id).rebase_onto(
390                tcx,
391                impl_def_id,
392                impl_trait_ref.args,
393            );
394            let alias_kind = ty::AliasTermKind::ProjectionConst { def_id: trait_item_def_id };
395            tcx.check_alias_term_args_compatible(alias_kind, args)
396                .then(|| tcx.type_of(trait_item_def_id).instantiate(tcx, args).skip_norm_wip())
397        } else {
398            Some(fcx.next_ty_var(span))
399        }
400    } else if let Node::AnonConst(_) = node {
401        let id = tcx.local_def_id_to_hir_id(def_id);
402        match tcx.parent_hir_node(id) {
403            Node::Expr(&hir::Expr { kind: hir::ExprKind::InlineAsm(asm), span, .. })
404            | Node::Item(&hir::Item { kind: hir::ItemKind::GlobalAsm { asm, .. }, span, .. }) => {
405                asm.operands.iter().find_map(|(op, _op_sp)| match op {
406                    hir::InlineAsmOperand::Const { anon_const } if anon_const.hir_id == id => {
407                        Some(fcx.next_ty_var(span))
408                    }
409                    _ => None,
410                })
411            }
412            _ => None,
413        }
414    } else {
415        None
416    };
417    expected_type
418}
419
420/// When `check_fn` is invoked on a coroutine (i.e., a body that
421/// includes yield), it returns back some information about the yield
422/// points.
423#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for CoroutineTypes<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "CoroutineTypes", "resume_ty", &self.resume_ty, "yield_ty",
            &&self.yield_ty)
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::marker::StructuralPartialEq for CoroutineTypes<'tcx> { }
#[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for CoroutineTypes<'tcx> {
    #[inline]
    fn eq(&self, other: &CoroutineTypes<'tcx>) -> bool {
        self.resume_ty == other.resume_ty && self.yield_ty == other.yield_ty
    }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::marker::Copy for CoroutineTypes<'tcx> { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl<'tcx> ::core::clone::TrivialClone for CoroutineTypes<'tcx> { }
#[automatically_derived]
impl<'tcx> ::core::clone::Clone for CoroutineTypes<'tcx> {
    #[inline]
    fn clone(&self) -> CoroutineTypes<'tcx> {
        let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
        let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
        *self
    }
}Clone)]
424struct CoroutineTypes<'tcx> {
425    /// Type of coroutine argument / values returned by `yield`.
426    resume_ty: Ty<'tcx>,
427
428    /// Type of value that is yielded.
429    yield_ty: Ty<'tcx>,
430}
431
432#[derive(#[automatically_derived]
impl ::core::marker::Copy for Needs { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Needs { }
#[automatically_derived]
impl ::core::clone::Clone for Needs {
    #[inline]
    fn clone(&self) -> Needs { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for Needs {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                Needs::MutPlace => "MutPlace",
                Needs::None => "None",
            })
    }
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for Needs { }
#[automatically_derived]
impl ::core::cmp::PartialEq for Needs {
    #[inline]
    fn eq(&self, other: &Needs) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Needs { }Eq)]
433pub enum Needs {
434    MutPlace,
435    None,
436}
437
438impl Needs {
439    fn maybe_mut_place(m: hir::Mutability) -> Self {
440        match m {
441            hir::Mutability::Mut => Needs::MutPlace,
442            hir::Mutability::Not => Needs::None,
443        }
444    }
445}
446
447#[derive(#[automatically_derived]
impl ::core::fmt::Debug for PlaceOp {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                PlaceOp::Deref => "Deref",
                PlaceOp::Index => "Index",
            })
    }
}Debug, #[automatically_derived]
impl ::core::marker::Copy for PlaceOp { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for PlaceOp { }
#[automatically_derived]
impl ::core::clone::Clone for PlaceOp {
    #[inline]
    fn clone(&self) -> PlaceOp { *self }
}Clone)]
448pub enum PlaceOp {
449    Deref,
450    Index,
451}
452
453pub struct BreakableCtxt<'tcx> {
454    may_break: bool,
455
456    // this is `null` for loops where break with a value is illegal,
457    // such as `while`, `for`, and `while let`
458    coerce: Option<CoerceMany<'tcx>>,
459}
460
461pub struct EnclosingBreakables<'tcx> {
462    stack: Vec<BreakableCtxt<'tcx>>,
463    by_id: HirIdMap<usize>,
464}
465
466impl<'tcx> EnclosingBreakables<'tcx> {
467    fn find_breakable(&mut self, target_id: HirId) -> &mut BreakableCtxt<'tcx> {
468        self.opt_find_breakable(target_id).unwrap_or_else(|| {
469            bug_impl(None,
    format_args!("could not find enclosing breakable with id {0}", target_id),
    Location::caller());bug!("could not find enclosing breakable with id {}", target_id);
470        })
471    }
472
473    fn opt_find_breakable(&mut self, target_id: HirId) -> Option<&mut BreakableCtxt<'tcx>> {
474        match self.by_id.get(&target_id) {
475            Some(ix) => Some(&mut self.stack[*ix]),
476            None => None,
477        }
478    }
479}
480impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
481    fn report_unexpected_variant_res(
482        &self,
483        res: Res,
484        expr: Option<&hir::Expr<'_>>,
485        sub_pats: &[hir::Pat<'_>],
486        qpath: &hir::QPath<'_>,
487        span: Span,
488        err_code: ErrCode,
489        expected: &str,
490    ) -> ErrorGuaranteed {
491        let tcx = self.tcx;
492        let res_descr = match res {
493            Res::Def(DefKind::Variant, _) => "struct variant",
494            _ => res.descr(),
495        };
496        let path_str = rustc_hir_pretty::qpath_to_string(self, qpath);
497        let mut err = tcx
498            .dcx()
499            .struct_span_err(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("expected {0}, found {1} `{2}`",
                expected, res_descr, path_str))
    })format!("expected {expected}, found {res_descr} `{path_str}`"))
500            .with_code(err_code);
501        match res {
502            Res::Def(DefKind::Fn | DefKind::AssocFn, _) if err_code == E0164 => {
503                let patterns_url = "https://doc.rust-lang.org/book/ch19-00-patterns.html";
504                err.with_span_label(span, "`fn` calls are not allowed in patterns")
505                    .with_help(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("for more information, visit {0}",
                patterns_url))
    })format!("for more information, visit {patterns_url}"))
506            }
507            Res::Def(DefKind::Variant, _) if let Some(expr) = expr => {
508                err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("not a {0}", expected))
    })format!("not a {expected}"));
509                let variant = tcx.expect_variant_res(res);
510                let sugg = if variant.fields.is_empty() {
511                    " {}".to_string()
512                } else {
513                    ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!(" {{ {0} }}",
                variant.fields.iter().map(|f|
                                ::alloc::__export::must_use({
                                        ::alloc::fmt::format(format_args!("{0}: /* value */",
                                                f.name))
                                    })).collect::<Vec<_>>().join(", ")))
    })format!(
514                        " {{ {} }}",
515                        variant
516                            .fields
517                            .iter()
518                            .map(|f| format!("{}: /* value */", f.name))
519                            .collect::<Vec<_>>()
520                            .join(", ")
521                    )
522                };
523                let descr = "you might have meant to create a new value of the struct";
524                let mut suggestion = ::alloc::vec::Vec::new()vec![];
525                match tcx.parent_hir_node(expr.hir_id) {
526                    hir::Node::Expr(hir::Expr {
527                        kind: hir::ExprKind::Call(..),
528                        span: call_span,
529                        ..
530                    }) => {
531                        suggestion.push((span.shrink_to_hi().with_hi(call_span.hi()), sugg));
532                    }
533                    hir::Node::Expr(hir::Expr {
534                        kind: hir::ExprKind::Binary(..), hir_id, ..
535                    }) => {
536                        suggestion.push((expr.span.shrink_to_lo(), "(".to_string()));
537                        if let hir::Node::Expr(parent) = tcx.parent_hir_node(*hir_id)
538                            && let hir::ExprKind::If(condition, block, None) = parent.kind
539                            && condition.hir_id == *hir_id
540                            && let hir::ExprKind::Block(block, _) = block.kind
541                            && block.stmts.is_empty()
542                            && let Some(expr) = block.expr
543                            && let hir::ExprKind::Path(..) = expr.kind
544                        {
545                            // Special case: you can incorrectly write an equality condition:
546                            // if foo == Struct { field } { /* if body */ }
547                            // which should have been written
548                            // if foo == (Struct { field }) { /* if body */ }
549                            suggestion.push((block.span.shrink_to_hi(), ")".to_string()));
550                        } else {
551                            suggestion.push((span.shrink_to_hi().with_hi(expr.span.hi()), sugg));
552                        }
553                    }
554                    _ => {
555                        suggestion.push((span.shrink_to_hi(), sugg));
556                    }
557                }
558
559                err.multipart_suggestion(descr, suggestion, Applicability::HasPlaceholders);
560                err
561            }
562            Res::Def(DefKind::Variant, _) if expr.is_none() => {
563                err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("not a {0}", expected))
    })format!("not a {expected}"));
564
565                let fields = &tcx.expect_variant_res(res).fields.raw;
566                let span = qpath.span().shrink_to_hi().to(span.shrink_to_hi());
567                let (msg, sugg) = if fields.is_empty() {
568                    ("use the struct variant pattern syntax", " {}".to_string())
569                } else {
570                    let msg = if fields.is_empty() {
571                        "use struct variant pattern syntax"
572                    } else {
573                        "add the names to match a struct variant's fields"
574                    };
575                    let fields_sugg = fields
576                        .iter()
577                        .enumerate()
578                        .map(|(i, field)| {
579                            let field_name = field.ident(tcx).to_string();
580
581                            let pat_snippet = sub_pats
582                                .get(i)
583                                .and_then(|sub_pat| {
584                                    tcx.sess.source_map().span_to_snippet(sub_pat.span).ok()
585                                })
586                                .unwrap_or_else(|| "_".to_string());
587
588                            if field_name == pat_snippet {
589                                field_name
590                            } else {
591                                ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}: {1}", field_name,
                pat_snippet))
    })format!("{field_name}: {pat_snippet}")
592                            }
593                        })
594                        .collect::<Vec<_>>()
595                        .join(", ");
596                    let sugg = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!(" {{ {0} }}", fields_sugg))
    })format!(" {{ {} }}", fields_sugg);
597                    (msg, sugg)
598                };
599
600                err.span_suggestion_verbose(
601                    qpath.span().shrink_to_hi().to(span.shrink_to_hi()),
602                    msg,
603                    sugg,
604                    Applicability::HasPlaceholders,
605                );
606                err
607            }
608            _ => err.with_span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("not a {0}", expected))
    })format!("not a {expected}")),
609        }
610        .emit()
611    }
612}
613
614/// Controls whether all arguments are tupled. This is used for the call operator only.
615///
616/// Tupling means that all call-side arguments are packed into a tuple and passed as a single
617/// parameter. For example, if tupling is enabled, this function:
618/// ```
619/// fn f(x: (isize, isize)) {}
620/// ```
621/// Can be called as:
622/// ```ignore UNSOLVED (can this be done in user code?)
623/// # fn f(x: (isize, isize)) {}
624/// f(1, 2);
625/// ```
626/// Instead of:
627/// ```
628/// # fn f(x: (isize, isize)) {}
629/// f((1, 2));
630/// ```
631///
632/// Note: splatted arguments are handled separately.
633#[derive(#[automatically_derived]
impl ::core::marker::Copy for TupleArgumentsFlag { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for TupleArgumentsFlag { }
#[automatically_derived]
impl ::core::clone::Clone for TupleArgumentsFlag {
    #[inline]
    fn clone(&self) -> TupleArgumentsFlag {
        let _: ::core::clone::AssertParamIsClone<u8>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for TupleArgumentsFlag {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            TupleArgumentsFlag::DontTupleArguments =>
                ::core::fmt::Formatter::write_str(f, "DontTupleArguments"),
            TupleArgumentsFlag::TupleAllCallArgs =>
                ::core::fmt::Formatter::write_str(f, "TupleAllCallArgs"),
            TupleArgumentsFlag::TupleSplattedSelfArg =>
                ::core::fmt::Formatter::write_str(f, "TupleSplattedSelfArg"),
            TupleArgumentsFlag::TupleSplattedArg(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "TupleSplattedArg", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::cmp::Eq for TupleArgumentsFlag {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<u8>;
    }
}Eq, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for TupleArgumentsFlag { }
#[automatically_derived]
impl ::core::cmp::PartialEq for TupleArgumentsFlag {
    #[inline]
    fn eq(&self, other: &TupleArgumentsFlag) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (TupleArgumentsFlag::TupleSplattedArg(__self_0),
                    TupleArgumentsFlag::TupleSplattedArg(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq)]
634enum TupleArgumentsFlag {
635    /// Arguments are typechecked unchanged.
636    DontTupleArguments,
637    /// This is a call operator: all caller arguments are tupled before typechecking.
638    /// Set based on the "rust-call" ABI and Fn* traits.
639    TupleAllCallArgs,
640    /// The `self` method argument is splatted, so `Self` should be tupled before typechecking.
641    TupleSplattedSelfArg,
642    /// A non-self argument is splatted, so that argument should be tupled before typechecking.
643    TupleSplattedArg(u8),
644}
645
646impl TupleArgumentsFlag {
647    /// Returns the TupleArgumentsFlag for a known RustCall function.
648    fn rust_fn_trait_call() -> Self {
649        Self::TupleAllCallArgs
650    }
651
652    /// Returns the appropriate TupleArgumentsFlag for the given FnSigKind and method flag.
653    fn with_fn_sig_kind<'tcx>(fn_sig_kind: FnSigKind<'tcx>, is_method: bool) -> Self {
654        if let Some(splatted_arg_index) = fn_sig_kind.splatted() {
655            if is_method {
656                if let Some(splatted_arg_index) = splatted_arg_index.checked_sub(1) {
657                    return Self::TupleSplattedArg(splatted_arg_index);
658                } else {
659                    // In `check_argument_types`, this is effectively `TupleSplattedArg(-1)`
660                    return Self::TupleSplattedSelfArg;
661                }
662            }
663
664            return Self::TupleSplattedArg(splatted_arg_index);
665        }
666
667        Self::DontTupleArguments
668    }
669
670    /// Returns true if the arguments are tupled through "rust-call" or splatting.
671    fn is_tupled(self) -> bool {
672        match self {
673            Self::DontTupleArguments => false,
674            Self::TupleAllCallArgs | Self::TupleSplattedSelfArg | Self::TupleSplattedArg(_) => true,
675        }
676    }
677
678    /// Returns true if the arguments are tupled through splatting.
679    /// (But false if they are "rust-call" or not tupled.)
680    fn is_splatted(self) -> bool {
681        match self {
682            Self::TupleSplattedSelfArg | Self::TupleSplattedArg(_) => true,
683            Self::DontTupleArguments | Self::TupleAllCallArgs => false,
684        }
685    }
686
687    /// Returns the tupled argument index, and whether the `self` argument is splatted.
688    /// Returns `None` if the arguments are not tupled, or if the `self` argument is splatted.
689    fn tupled_arg_index(self) -> (Option<u16>, bool /* is_self_splatted */) {
690        match self {
691            Self::TupleSplattedArg(index) => (Some(u16::from(index)), false),
692            Self::TupleAllCallArgs => (Some(0), false),
693            Self::TupleSplattedSelfArg => (None, true),
694            Self::DontTupleArguments => (None, false),
695        }
696    }
697}
698
699fn fatally_break_rust(tcx: TyCtxt<'_>, span: Span) -> ! {
700    let dcx = tcx.dcx();
701    let mut diag = dcx.struct_span_bug(
702        span,
703        "It looks like you're trying to break rust; would you like some ICE?",
704    );
705    diag.note("the compiler expectedly panicked. this is a feature.");
706    diag.note(
707        "we would appreciate a joke overview: \
708         https://github.com/rust-lang/rust/issues/43162#issuecomment-320764675",
709    );
710    diag.note(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("rustc {0} running on {1}",
                tcx.sess.cfg_version, config::host_tuple()))
    })format!("rustc {} running on {}", tcx.sess.cfg_version, config::host_tuple(),));
711    if let Some((flags, excluded_cargo_defaults)) = rustc_session::utils::extra_compiler_flags() {
712        diag.note(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("compiler flags: {0}",
                flags.join(" ")))
    })format!("compiler flags: {}", flags.join(" ")));
713        if excluded_cargo_defaults {
714            diag.note("some of the compiler flags provided by cargo are hidden");
715        }
716    }
717    diag.emit()
718}
719
720/// Adds query implementations to the [Providers] vtable, see [`rustc_middle::query`]
721pub fn provide(providers: &mut Providers) {
722    *providers = Providers {
723        method_autoderef_steps: method::probe::method_autoderef_steps,
724        typeck_root,
725        used_trait_imports,
726        check_transmutes: intrinsicck::check_transmutes,
727        check_offloads: intrinsicck::check_offloads,
728        ..*providers
729    };
730}