Skip to main content

rustc_hir_typeck/
lib.rs

1// tidy-alphabetical-start
2#![cfg_attr(bootstrap, feature(assert_matches))]
3#![feature(box_patterns)]
4#![feature(if_let_guard)]
5#![feature(iter_intersperse)]
6#![feature(iter_order_by)]
7#![feature(never_type)]
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 diverges;
21mod errors;
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, ErrorGuaranteed, pluralize, 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, check_custom_abi};
51use rustc_hir_analysis::hir_ty_lowering::HirTyLowerer;
52use rustc_infer::traits::{ObligationCauseCode, ObligationInspector, WellFormedLoc};
53use rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrFlags;
54use rustc_middle::query::Providers;
55use rustc_middle::ty::{self, Ty, TyCtxt};
56use rustc_middle::{bug, span_bug};
57use rustc_session::config;
58use rustc_span::Span;
59use rustc_span::def_id::LocalDefId;
60use tracing::{debug, instrument};
61use typeck_root_ctxt::TypeckRootCtxt;
62
63use crate::check::check_fn;
64use crate::coercion::CoerceMany;
65use crate::diverges::Diverges;
66use crate::expectation::Expectation;
67use crate::fn_ctxt::LoweredTy;
68use crate::gather_locals::GatherLocalsVisitor;
69
70#[macro_export]
71macro_rules! type_error_struct {
72    ($dcx:expr, $span:expr, $typ:expr, $code:expr, $($message:tt)*) => ({
73        let mut err = rustc_errors::struct_span_code_err!($dcx, $span, $code, $($message)*);
74
75        if $typ.references_error() {
76            err.downgrade_to_delayed_bug();
77        }
78
79        err
80    })
81}
82
83fn used_trait_imports(tcx: TyCtxt<'_>, def_id: LocalDefId) -> &UnordSet<LocalDefId> {
84    &tcx.typeck(def_id).used_trait_imports
85}
86
87fn typeck<'tcx>(tcx: TyCtxt<'tcx>, def_id: LocalDefId) -> &'tcx ty::TypeckResults<'tcx> {
88    typeck_with_inspect(tcx, def_id, None)
89}
90
91/// Same as `typeck` but `inspect` is invoked on evaluation of each root obligation.
92/// Inspecting obligations only works with the new trait solver.
93/// This function is *only to be used* by external tools, it should not be
94/// called from within rustc. Note, this is not a query, and thus is not cached.
95pub fn inspect_typeck<'tcx>(
96    tcx: TyCtxt<'tcx>,
97    def_id: LocalDefId,
98    inspect: ObligationInspector<'tcx>,
99) -> &'tcx ty::TypeckResults<'tcx> {
100    typeck_with_inspect(tcx, def_id, Some(inspect))
101}
102
103x;#[instrument(level = "debug", skip(tcx, inspector), ret)]
104fn typeck_with_inspect<'tcx>(
105    tcx: TyCtxt<'tcx>,
106    def_id: LocalDefId,
107    inspector: Option<ObligationInspector<'tcx>>,
108) -> &'tcx ty::TypeckResults<'tcx> {
109    // Closures' typeck results come from their outermost function,
110    // as they are part of the same "inference environment".
111    let typeck_root_def_id = tcx.typeck_root_def_id(def_id.to_def_id()).expect_local();
112    if typeck_root_def_id != def_id {
113        return tcx.typeck(typeck_root_def_id);
114    }
115
116    let id = tcx.local_def_id_to_hir_id(def_id);
117    let node = tcx.hir_node(id);
118    let span = tcx.def_span(def_id);
119
120    // Figure out what primary body this item has.
121    let body_id = node.body_id().unwrap_or_else(|| {
122        span_bug!(span, "can't type-check body of {:?}", def_id);
123    });
124    let body = tcx.hir_body(body_id);
125
126    let param_env = tcx.param_env(def_id);
127
128    let root_ctxt = TypeckRootCtxt::new(tcx, def_id);
129    if let Some(inspector) = inspector {
130        root_ctxt.infcx.attach_obligation_inspector(inspector);
131    }
132    let mut fcx = FnCtxt::new(&root_ctxt, param_env, def_id);
133
134    if let hir::Node::Item(hir::Item { kind: hir::ItemKind::GlobalAsm { .. }, .. }) = node {
135        // Check the fake body of a global ASM. There's not much to do here except
136        // for visit the asm expr of the body.
137        let ty = fcx.check_expr(body.value);
138        fcx.write_ty(id, ty);
139    } else if let Some(hir::FnSig { header, decl, span: fn_sig_span }) = node.fn_sig() {
140        let fn_sig = if decl.output.is_suggestable_infer_ty().is_some() {
141            // In the case that we're recovering `fn() -> W<_>` or some other return
142            // type that has an infer in it, lower the type directly so that it'll
143            // be correctly filled with infer. We'll use this inference to provide
144            // a suggestion later on.
145            fcx.lowerer().lower_fn_ty(id, header.safety(), header.abi, decl, None, None)
146        } else {
147            tcx.fn_sig(def_id).instantiate_identity()
148        };
149
150        check_abi(tcx, id, span, fn_sig.abi());
151        check_custom_abi(tcx, def_id, fn_sig.skip_binder(), *fn_sig_span);
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), 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()
192        };
193
194        loops::check(tcx, def_id, body);
195
196        let expected_type = fcx.normalize(body.value.span, 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(body.value, expected_type, None);
210
211        fcx.write_ty(id, expected_type);
212    };
213
214    // Whether to check repeat exprs before/after inference fallback is somewhat
215    // arbitrary of a decision as neither option is strictly more permissive than
216    // the other. However, we opt to check repeat exprs first as errors from not
217    // having inferred array lengths yet seem less confusing than errors from inference
218    // fallback arbitrarily inferring something incompatible with `Copy` inference
219    // side effects.
220    //
221    // FIXME(#140855): This should also be forwards compatible with moving
222    // repeat expr checks to a custom goal kind or using marker traits in
223    // the future.
224    fcx.check_repeat_exprs();
225
226    // We need to handle opaque types before emitting ambiguity errors as applying
227    // defining uses may guide type inference.
228    if fcx.next_trait_solver() {
229        fcx.try_handle_opaque_type_uses_next();
230    }
231
232    fcx.type_inference_fallback();
233
234    // Even though coercion casts provide type hints, we check casts after fallback for
235    // backwards compatibility. This makes fallback a stronger type hint than a cast coercion.
236    fcx.check_casts();
237    fcx.select_obligations_where_possible(|_| {});
238
239    // Closure and coroutine analysis may run after fallback
240    // because they don't constrain other type variables.
241    fcx.closure_analyze(body);
242    assert!(fcx.deferred_call_resolutions.borrow().is_empty());
243
244    for (ty, span, code) in fcx.deferred_sized_obligations.borrow_mut().drain(..) {
245        let ty = fcx.normalize(span, ty);
246        fcx.require_type_is_sized(ty, span, code);
247    }
248
249    fcx.select_obligations_where_possible(|_| {});
250
251    debug!(pending_obligations = ?fcx.fulfillment_cx.borrow().pending_obligations());
252
253    // We need to handle opaque types before emitting ambiguity errors as applying
254    // defining uses may guide type inference.
255    if fcx.next_trait_solver() {
256        fcx.handle_opaque_type_uses_next();
257    }
258
259    // This must be the last thing before `report_ambiguity_errors` below except `select_obligations_where_possible`.
260    // So don't put anything after this.
261    fcx.drain_stalled_coroutine_obligations();
262    if fcx.infcx.tainted_by_errors().is_none() {
263        fcx.report_ambiguity_errors();
264    }
265
266    fcx.check_asms();
267
268    let typeck_results = fcx.resolve_type_vars_in_body(body);
269
270    fcx.detect_opaque_types_added_during_writeback();
271
272    // Consistency check our TypeckResults instance can hold all ItemLocalIds
273    // it will need to hold.
274    assert_eq!(typeck_results.hir_owner, id.owner);
275
276    typeck_results
277}
278
279fn infer_type_if_missing<'tcx>(fcx: &FnCtxt<'_, 'tcx>, node: Node<'tcx>) -> Option<Ty<'tcx>> {
280    let tcx = fcx.tcx;
281    let def_id = fcx.body_id;
282    let expected_type = if let Some(&hir::Ty { kind: hir::TyKind::Infer(()), span, .. }) = node.ty()
283    {
284        if let Some(item) = tcx.opt_associated_item(def_id.into())
285            && let ty::AssocKind::Const { .. } = item.kind
286            && let ty::AssocContainer::TraitImpl(Ok(trait_item_def_id)) = item.container
287        {
288            let impl_def_id = item.container_id(tcx);
289            let impl_trait_ref = tcx.impl_trait_ref(impl_def_id).instantiate_identity();
290            let args = ty::GenericArgs::identity_for_item(tcx, def_id).rebase_onto(
291                tcx,
292                impl_def_id,
293                impl_trait_ref.args,
294            );
295            tcx.check_args_compatible(trait_item_def_id, args)
296                .then(|| tcx.type_of(trait_item_def_id).instantiate(tcx, args))
297        } else {
298            Some(fcx.next_ty_var(span))
299        }
300    } else if let Node::AnonConst(_) = node {
301        let id = tcx.local_def_id_to_hir_id(def_id);
302        match tcx.parent_hir_node(id) {
303            Node::Expr(&hir::Expr { kind: hir::ExprKind::InlineAsm(asm), span, .. })
304            | Node::Item(&hir::Item { kind: hir::ItemKind::GlobalAsm { asm, .. }, span, .. }) => {
305                asm.operands.iter().find_map(|(op, _op_sp)| match op {
306                    hir::InlineAsmOperand::Const { anon_const } if anon_const.hir_id == id => {
307                        Some(fcx.next_ty_var(span))
308                    }
309                    _ => None,
310                })
311            }
312            _ => None,
313        }
314    } else {
315        None
316    };
317    expected_type
318}
319
320/// When `check_fn` is invoked on a coroutine (i.e., a body that
321/// includes yield), it returns back some information about the yield
322/// points.
323#[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::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]
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)]
324struct CoroutineTypes<'tcx> {
325    /// Type of coroutine argument / values returned by `yield`.
326    resume_ty: Ty<'tcx>,
327
328    /// Type of value that is yielded.
329    yield_ty: Ty<'tcx>,
330}
331
332#[derive(#[automatically_derived]
impl ::core::marker::Copy for Needs { }Copy, #[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::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 {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) {}
}Eq)]
333pub enum Needs {
334    MutPlace,
335    None,
336}
337
338impl Needs {
339    fn maybe_mut_place(m: hir::Mutability) -> Self {
340        match m {
341            hir::Mutability::Mut => Needs::MutPlace,
342            hir::Mutability::Not => Needs::None,
343        }
344    }
345}
346
347#[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]
impl ::core::clone::Clone for PlaceOp {
    #[inline]
    fn clone(&self) -> PlaceOp { *self }
}Clone)]
348pub enum PlaceOp {
349    Deref,
350    Index,
351}
352
353pub struct BreakableCtxt<'tcx> {
354    may_break: bool,
355
356    // this is `null` for loops where break with a value is illegal,
357    // such as `while`, `for`, and `while let`
358    coerce: Option<CoerceMany<'tcx>>,
359}
360
361pub struct EnclosingBreakables<'tcx> {
362    stack: Vec<BreakableCtxt<'tcx>>,
363    by_id: HirIdMap<usize>,
364}
365
366impl<'tcx> EnclosingBreakables<'tcx> {
367    fn find_breakable(&mut self, target_id: HirId) -> &mut BreakableCtxt<'tcx> {
368        self.opt_find_breakable(target_id).unwrap_or_else(|| {
369            ::rustc_middle::util::bug::bug_fmt(format_args!("could not find enclosing breakable with id {0}",
        target_id));bug!("could not find enclosing breakable with id {}", target_id);
370        })
371    }
372
373    fn opt_find_breakable(&mut self, target_id: HirId) -> Option<&mut BreakableCtxt<'tcx>> {
374        match self.by_id.get(&target_id) {
375            Some(ix) => Some(&mut self.stack[*ix]),
376            None => None,
377        }
378    }
379}
380
381fn report_unexpected_variant_res(
382    tcx: TyCtxt<'_>,
383    res: Res,
384    expr: Option<&hir::Expr<'_>>,
385    qpath: &hir::QPath<'_>,
386    span: Span,
387    err_code: ErrCode,
388    expected: &str,
389) -> ErrorGuaranteed {
390    let res_descr = match res {
391        Res::Def(DefKind::Variant, _) => "struct variant",
392        _ => res.descr(),
393    };
394    let path_str = rustc_hir_pretty::qpath_to_string(&tcx, qpath);
395    let mut err = tcx
396        .dcx()
397        .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}`"))
398        .with_code(err_code);
399    match res {
400        Res::Def(DefKind::Fn | DefKind::AssocFn, _) if err_code == E0164 => {
401            let patterns_url = "https://doc.rust-lang.org/book/ch19-00-patterns.html";
402            err.with_span_label(span, "`fn` calls are not allowed in patterns")
403                .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}"))
404        }
405        Res::Def(DefKind::Variant, _) if let Some(expr) = expr => {
406            err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("not a {0}", expected))
    })format!("not a {expected}"));
407            let variant = tcx.expect_variant_res(res);
408            let sugg = if variant.fields.is_empty() {
409                " {}".to_string()
410            } else {
411                ::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!(
412                    " {{ {} }}",
413                    variant
414                        .fields
415                        .iter()
416                        .map(|f| format!("{}: /* value */", f.name))
417                        .collect::<Vec<_>>()
418                        .join(", ")
419                )
420            };
421            let descr = "you might have meant to create a new value of the struct";
422            let mut suggestion = ::alloc::vec::Vec::new()vec![];
423            match tcx.parent_hir_node(expr.hir_id) {
424                hir::Node::Expr(hir::Expr {
425                    kind: hir::ExprKind::Call(..),
426                    span: call_span,
427                    ..
428                }) => {
429                    suggestion.push((span.shrink_to_hi().with_hi(call_span.hi()), sugg));
430                }
431                hir::Node::Expr(hir::Expr { kind: hir::ExprKind::Binary(..), hir_id, .. }) => {
432                    suggestion.push((expr.span.shrink_to_lo(), "(".to_string()));
433                    if let hir::Node::Expr(parent) = tcx.parent_hir_node(*hir_id)
434                        && let hir::ExprKind::If(condition, block, None) = parent.kind
435                        && condition.hir_id == *hir_id
436                        && let hir::ExprKind::Block(block, _) = block.kind
437                        && block.stmts.is_empty()
438                        && let Some(expr) = block.expr
439                        && let hir::ExprKind::Path(..) = expr.kind
440                    {
441                        // Special case: you can incorrectly write an equality condition:
442                        // if foo == Struct { field } { /* if body */ }
443                        // which should have been written
444                        // if foo == (Struct { field }) { /* if body */ }
445                        suggestion.push((block.span.shrink_to_hi(), ")".to_string()));
446                    } else {
447                        suggestion.push((span.shrink_to_hi().with_hi(expr.span.hi()), sugg));
448                    }
449                }
450                _ => {
451                    suggestion.push((span.shrink_to_hi(), sugg));
452                }
453            }
454
455            err.multipart_suggestion_verbose(descr, suggestion, Applicability::HasPlaceholders);
456            err
457        }
458        Res::Def(DefKind::Variant, _) if expr.is_none() => {
459            err.span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("not a {0}", expected))
    })format!("not a {expected}"));
460
461            let fields = &tcx.expect_variant_res(res).fields.raw;
462            let span = qpath.span().shrink_to_hi().to(span.shrink_to_hi());
463            let (msg, sugg) = if fields.is_empty() {
464                ("use the struct variant pattern syntax".to_string(), " {}".to_string())
465            } else {
466                let msg = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("the struct variant\'s field{0} {1} being ignored",
                if fields.len() == 1 { "" } else { "s" },
                if fields.len() == 1 { "is" } else { "are" }))
    })format!(
467                    "the struct variant's field{s} {are} being ignored",
468                    s = pluralize!(fields.len()),
469                    are = pluralize!("is", fields.len())
470                );
471                let fields = fields
472                    .iter()
473                    .map(|field| ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}: _", field.ident(tcx)))
    })format!("{}: _", field.ident(tcx)))
474                    .collect::<Vec<_>>()
475                    .join(", ");
476                let sugg = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!(" {{ {0} }}", fields))
    })format!(" {{ {} }}", fields);
477                (msg, sugg)
478            };
479
480            err.span_suggestion_verbose(
481                qpath.span().shrink_to_hi().to(span.shrink_to_hi()),
482                msg,
483                sugg,
484                Applicability::HasPlaceholders,
485            );
486            err
487        }
488        _ => err.with_span_label(span, ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("not a {0}", expected))
    })format!("not a {expected}")),
489    }
490    .emit()
491}
492
493/// Controls whether the arguments are tupled. This is used for the call
494/// operator.
495///
496/// Tupling means that all call-side arguments are packed into a tuple and
497/// passed as a single parameter. For example, if tupling is enabled, this
498/// function:
499/// ```
500/// fn f(x: (isize, isize)) {}
501/// ```
502/// Can be called as:
503/// ```ignore UNSOLVED (can this be done in user code?)
504/// # fn f(x: (isize, isize)) {}
505/// f(1, 2);
506/// ```
507/// Instead of:
508/// ```
509/// # fn f(x: (isize, isize)) {}
510/// f((1, 2));
511/// ```
512#[derive(#[automatically_derived]
impl ::core::marker::Copy for TupleArgumentsFlag { }Copy, #[automatically_derived]
impl ::core::clone::Clone for TupleArgumentsFlag {
    #[inline]
    fn clone(&self) -> TupleArgumentsFlag { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::Eq for TupleArgumentsFlag {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) {}
}Eq, #[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
    }
}PartialEq)]
513enum TupleArgumentsFlag {
514    DontTupleArguments,
515    TupleArguments,
516}
517
518fn fatally_break_rust(tcx: TyCtxt<'_>, span: Span) -> ! {
519    let dcx = tcx.dcx();
520    let mut diag = dcx.struct_span_bug(
521        span,
522        "It looks like you're trying to break rust; would you like some ICE?",
523    );
524    diag.note("the compiler expectedly panicked. this is a feature.");
525    diag.note(
526        "we would appreciate a joke overview: \
527         https://github.com/rust-lang/rust/issues/43162#issuecomment-320764675",
528    );
529    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(),));
530    if let Some((flags, excluded_cargo_defaults)) = rustc_session::utils::extra_compiler_flags() {
531        diag.note(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("compiler flags: {0}",
                flags.join(" ")))
    })format!("compiler flags: {}", flags.join(" ")));
532        if excluded_cargo_defaults {
533            diag.note("some of the compiler flags provided by cargo are hidden");
534        }
535    }
536    diag.emit()
537}
538
539/// Adds query implementations to the [Providers] vtable, see [`rustc_middle::query`]
540pub fn provide(providers: &mut Providers) {
541    *providers = Providers {
542        method_autoderef_steps: method::probe::method_autoderef_steps,
543        typeck,
544        used_trait_imports,
545        check_transmutes: intrinsicck::check_transmutes,
546        ..*providers
547    };
548}