1use std::collections::hash_map::Entry::{Occupied, Vacant};
2use std::{assert_matches, cmp};
34use rustc_abi::FieldIdx;
5use rustc_astas ast;
6use rustc_data_structures::fx::FxHashMap;
7use rustc_errors::codes::*;
8use rustc_errors::{
9Applicability, Diag, DiagCtxtHandle, Diagnostic, ErrorGuaranteed, Level, MultiSpan, pluralize,
10struct_span_code_err,
11};
12use rustc_hir::attrs::lang_items::LangItem;
13use rustc_hir::def::{CtorKind, DefKind, Res};
14use rustc_hir::def_id::DefId;
15use rustc_hir::pat_util::EnumerateAndAdjustIterator;
16use rustc_hir::{
17selfas hir, BindingMode, ByRef, ExprKind, HirId, Mutability, Pat, PatExpr, PatExprKind,
18PatKind, expr_needs_parens,
19};
20use rustc_hir_analysis::autoderef::report_autoderef_recursion_limit_error;
21use rustc_infer::infer::RegionVariableOrigin;
22use rustc_lint_defs::builtin::NON_EXHAUSTIVE_OMITTED_PATTERNS;
23use rustc_middle::traits::PatternOriginExpr;
24use rustc_middle::ty::{self, Pinnedness, Ty, TypeVisitableExt, Unnormalized};
25use rustc_session::diagnostics::feature_err;
26use rustc_span::edit_distance::find_best_match_for_name;
27use rustc_span::edition::Edition;
28use rustc_span::{BytePos, DUMMY_SP, Ident, Span, bug, kw, span_bug, sym};
29use rustc_trait_selection::infer::InferCtxtExt;
30use rustc_trait_selection::traits::{ObligationCause, ObligationCauseCode};
31use tracing::{debug, instrument, trace};
32use ty::VariantDef;
33use ty::adjustment::{PatAdjust, PatAdjustment};
3435use crate::expectation::Expectation;
36use crate::gather_locals::DeclOrigin;
37use crate::{FnCtxt, diagnostics};
3839const CANNOT_IMPLICITLY_DEREF_POINTER_TRAIT_OBJ: &str = "\
40This error indicates that a pointer to a trait type cannot be implicitly dereferenced by a \
41pattern. Every trait defines a type, but because the size of trait implementors isn't fixed, \
42this type has no compile-time size. Therefore, all accesses to trait types must be through \
43pointers. If you encounter this error you should try to avoid dereferencing the pointer.
4445You can read more about trait objects in the Trait Objects section of the Reference: \
46https://doc.rust-lang.org/reference/types.html#trait-objects";
4748fn is_number(text: &str) -> bool {
49text.chars().all(|c: char| c.is_ascii_digit())
50}
5152/// Information about the expected type at the top level of type checking a pattern.
53///
54/// **NOTE:** This is only for use by diagnostics. Do NOT use for type checking logic!
55#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for TopInfo<'tcx> { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl<'tcx> ::core::clone::TrivialClone for TopInfo<'tcx> { }
#[automatically_derived]
impl<'tcx> ::core::clone::Clone for TopInfo<'tcx> {
#[inline]
fn clone(&self) -> TopInfo<'tcx> {
let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
let _:
::core::clone::AssertParamIsClone<Option<&'tcx hir::Expr<'tcx>>>;
let _: ::core::clone::AssertParamIsClone<Option<Span>>;
let _: ::core::clone::AssertParamIsClone<HirId>;
*self
}
}Clone)]
56struct TopInfo<'tcx> {
57/// The `expected` type at the top level of type checking a pattern.
58expected: Ty<'tcx>,
59/// Was the origin of the `span` from a scrutinee expression?
60 ///
61 /// Otherwise there is no scrutinee and it could be e.g. from the type of a formal parameter.
62origin_expr: Option<&'tcx hir::Expr<'tcx>>,
63/// The span giving rise to the `expected` type, if one could be provided.
64 ///
65 /// If `origin_expr` is `true`, then this is the span of the scrutinee as in:
66 ///
67 /// - `match scrutinee { ... }`
68 /// - `let _ = scrutinee;`
69 ///
70 /// This is used to point to add context in type errors.
71 /// In the following example, `span` corresponds to the `a + b` expression:
72 ///
73 /// ```text
74 /// error[E0308]: mismatched types
75 /// --> src/main.rs:L:C
76 /// |
77 /// L | let temp: usize = match a + b {
78 /// | ----- this expression has type `usize`
79 /// L | Ok(num) => num,
80 /// | ^^^^^^^ expected `usize`, found enum `std::result::Result`
81 /// |
82 /// = note: expected type `usize`
83 /// found type `std::result::Result<_, _>`
84 /// ```
85span: Option<Span>,
86/// The [`HirId`] of the top-level pattern.
87hir_id: HirId,
88}
8990#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for PatInfo<'tcx> { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl<'tcx> ::core::clone::TrivialClone for PatInfo<'tcx> { }
#[automatically_derived]
impl<'tcx> ::core::clone::Clone for PatInfo<'tcx> {
#[inline]
fn clone(&self) -> PatInfo<'tcx> {
let _: ::core::clone::AssertParamIsClone<ByRef>;
let _: ::core::clone::AssertParamIsClone<PinnednessCap>;
let _: ::core::clone::AssertParamIsClone<MutblCap>;
let _: ::core::clone::AssertParamIsClone<TopInfo<'tcx>>;
let _: ::core::clone::AssertParamIsClone<Option<DeclOrigin<'tcx>>>;
let _: ::core::clone::AssertParamIsClone<u32>;
*self
}
}Clone)]
91struct PatInfo<'tcx> {
92 binding_mode: ByRef,
93 max_pinnedness: PinnednessCap,
94 max_ref_mutbl: MutblCap,
95 top_info: TopInfo<'tcx>,
96 decl_origin: Option<DeclOrigin<'tcx>>,
9798/// The depth of current pattern
99current_depth: u32,
100}
101102impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
103fn pattern_cause(&self, ti: &TopInfo<'tcx>, cause_span: Span) -> ObligationCause<'tcx> {
104// If origin_expr exists, then expected represents the type of origin_expr.
105 // If span also exists, then span == origin_expr.span (although it doesn't need to exist).
106 // In that case, we can peel away references from both and treat them
107 // as the same.
108let origin_expr_info = ti.origin_expr.map(|mut cur_expr| {
109let mut count = 0;
110111// cur_ty may have more layers of references than cur_expr.
112 // We can only make suggestions about cur_expr, however, so we'll
113 // use that as our condition for stopping.
114while let ExprKind::AddrOf(.., inner) = &cur_expr.kind {
115 cur_expr = inner;
116 count += 1;
117 }
118119PatternOriginExpr {
120 peeled_span: cur_expr.span,
121 peeled_count: count,
122 peeled_prefix_suggestion_parentheses: expr_needs_parens(cur_expr),
123 }
124 });
125126let code = ObligationCauseCode::Pattern {
127 span: ti.span,
128 root_ty: ti.expected,
129 origin_expr: origin_expr_info,
130 };
131self.cause(cause_span, code)
132 }
133134fn demand_eqtype_pat_diag(
135&'a self,
136 cause_span: Span,
137 expected: Ty<'tcx>,
138 actual: Ty<'tcx>,
139 ti: &TopInfo<'tcx>,
140 ) -> Result<(), Diag<'a>> {
141self.demand_eqtype_with_origin(&self.pattern_cause(ti, cause_span), expected, actual)
142 .map_err(|mut diag| {
143if let Some(expr) = ti.origin_expr {
144self.suggest_fn_call(&mut diag, expr, expected, |output| {
145self.can_eq(self.param_env, output, actual)
146 });
147 }
148diag149 })
150 }
151152fn demand_eqtype_pat(
153&self,
154 cause_span: Span,
155 expected: Ty<'tcx>,
156 actual: Ty<'tcx>,
157 ti: &TopInfo<'tcx>,
158 ) -> Result<(), ErrorGuaranteed> {
159self.demand_eqtype_pat_diag(cause_span, expected, actual, ti).map_err(|err| err.emit())
160 }
161}
162163/// Mode for adjusting the expected type and binding mode.
164#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AdjustMode { }
#[automatically_derived]
impl ::core::clone::Clone for AdjustMode {
#[inline]
fn clone(&self) -> AdjustMode {
let _: ::core::clone::AssertParamIsClone<PeelKind>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for AdjustMode { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for AdjustMode {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
AdjustMode::Peel { kind: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f, "Peel",
"kind", &__self_0),
AdjustMode::Pass => ::core::fmt::Formatter::write_str(f, "Pass"),
}
}
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for AdjustMode { }
#[automatically_derived]
impl ::core::cmp::PartialEq for AdjustMode {
#[inline]
fn eq(&self, other: &AdjustMode) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(AdjustMode::Peel { kind: __self_0 }, AdjustMode::Peel {
kind: __arg1_0 }) => __self_0 == __arg1_0,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for AdjustMode {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<PeelKind>;
}
}Eq)]
165enum AdjustMode {
166/// Peel off all immediate reference types. If the `deref_patterns` feature is enabled, this
167 /// also peels smart pointer ADTs.
168Peel { kind: PeelKind },
169/// Pass on the input binding mode and expected type.
170Pass,
171}
172173/// Restrictions on what types to peel when adjusting the expected type and binding mode.
174#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for PeelKind { }
#[automatically_derived]
impl ::core::clone::Clone for PeelKind {
#[inline]
fn clone(&self) -> PeelKind {
let _: ::core::clone::AssertParamIsClone<Option<DefId>>;
let _: ::core::clone::AssertParamIsClone<usize>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for PeelKind { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for PeelKind {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
PeelKind::ExplicitDerefPat =>
::core::fmt::Formatter::write_str(f, "ExplicitDerefPat"),
PeelKind::Implicit { until_adt: __self_0, pat_ref_layers: __self_1
} =>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"Implicit", "until_adt", __self_0, "pat_ref_layers",
&__self_1),
}
}
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for PeelKind { }
#[automatically_derived]
impl ::core::cmp::PartialEq for PeelKind {
#[inline]
fn eq(&self, other: &PeelKind) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(PeelKind::Implicit {
until_adt: __self_0, pat_ref_layers: __self_1 },
PeelKind::Implicit {
until_adt: __arg1_0, pat_ref_layers: __arg1_1 }) =>
__self_0 == __arg1_0 && __self_1 == __arg1_1,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for PeelKind {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Option<DefId>>;
let _: ::core::cmp::AssertParamIsEq<usize>;
}
}Eq)]
175enum PeelKind {
176/// Only peel reference types. This is used for explicit `deref!(_)` patterns, which dereference
177 /// any number of `&`/`&mut` references, plus a single smart pointer.
178ExplicitDerefPat,
179/// Implicitly peel references, and if `deref_patterns` is enabled, smart pointer ADTs.
180Implicit {
181/// The ADT the pattern is a constructor for, if applicable, so that we don't peel it. See
182 /// [`ResolvedPat`] for more information.
183until_adt: Option<DefId>,
184/// The number of references at the head of the pattern's type, so we can leave that many
185 /// untouched. This is `1` for string literals, and `0` for most patterns.
186pat_ref_layers: usize,
187 },
188}
189190impl AdjustMode {
191const fn peel_until_adt(opt_adt_def: Option<DefId>) -> AdjustMode {
192 AdjustMode::Peel { kind: PeelKind::Implicit { until_adt: opt_adt_def, pat_ref_layers: 0 } }
193 }
194const fn peel_all() -> AdjustMode {
195AdjustMode::peel_until_adt(None)
196 }
197}
198199/// `ref mut` bindings (explicit or match-ergonomics) are not allowed behind an `&` reference.
200/// Normally, the borrow checker enforces this, but for (currently experimental) match ergonomics,
201/// we track this when typing patterns for two purposes:
202///
203/// - For RFC 3627's Rule 3, when this would prevent us from binding with `ref mut`, we limit the
204/// default binding mode to be by shared `ref` when it would otherwise be `ref mut`.
205///
206/// - For RFC 3627's Rule 5, we allow `&` patterns to match against `&mut` references, treating them
207/// as if they were shared references. Since the scrutinee is mutable in this case, the borrow
208/// checker won't catch if we bind with `ref mut`, so we need to throw an error ourselves.
209#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for MutblCap { }
#[automatically_derived]
impl ::core::clone::Clone for MutblCap {
#[inline]
fn clone(&self) -> MutblCap {
let _: ::core::clone::AssertParamIsClone<Option<Span>>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for MutblCap { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for MutblCap {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
MutblCap::Not => ::core::fmt::Formatter::write_str(f, "Not"),
MutblCap::WeaklyNot(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"WeaklyNot", &__self_0),
MutblCap::Mut => ::core::fmt::Formatter::write_str(f, "Mut"),
}
}
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for MutblCap { }
#[automatically_derived]
impl ::core::cmp::PartialEq for MutblCap {
#[inline]
fn eq(&self, other: &MutblCap) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(MutblCap::WeaklyNot(__self_0), MutblCap::WeaklyNot(__arg1_0))
=> __self_0 == __arg1_0,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for MutblCap {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Option<Span>>;
}
}Eq)]
210enum MutblCap {
211/// Mutability restricted to immutable.
212Not,
213214/// Mutability restricted to immutable, but only because of the pattern
215 /// (not the scrutinee type).
216 ///
217 /// The contained span, if present, points to an `&` pattern
218 /// that is the reason for the restriction,
219 /// and which will be reported in a diagnostic.
220WeaklyNot(Option<Span>),
221222/// No restriction on mutability
223Mut,
224}
225226impl MutblCap {
227#[must_use]
228fn cap_to_weakly_not(self, span: Option<Span>) -> Self {
229match self {
230 MutblCap::Not => MutblCap::Not,
231_ => MutblCap::WeaklyNot(span),
232 }
233 }
234235#[must_use]
236fn as_mutbl(self) -> Mutability {
237match self {
238 MutblCap::Not | MutblCap::WeaklyNot(_) => Mutability::Not,
239 MutblCap::Mut => Mutability::Mut,
240 }
241 }
242}
243244/// `ref` or `ref mut` bindings (not pinned, explicitly or match-ergonomics) are only allowed behind
245/// an `&pin` reference if the binding's type is `Unpin`.
246///
247/// Normally, the borrow checker enforces this (not implemented yet), but we track it here for better
248/// diagnostics.
249#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for PinnednessCap { }
#[automatically_derived]
impl ::core::clone::Clone for PinnednessCap {
#[inline]
fn clone(&self) -> PinnednessCap { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for PinnednessCap { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for PinnednessCap {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
PinnednessCap::Not => "Not",
PinnednessCap::Pinned => "Pinned",
})
}
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for PinnednessCap { }
#[automatically_derived]
impl ::core::cmp::PartialEq for PinnednessCap {
#[inline]
fn eq(&self, other: &PinnednessCap) -> 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 PinnednessCap { }Eq)]
250enum PinnednessCap {
251/// No restriction on pinnedness.
252Not,
253/// Pinnedness restricted to pinned.
254Pinned,
255}
256257/// Variations on RFC 3627's Rule 4: when do reference patterns match against inherited references?
258///
259/// "Inherited reference" designates the `&`/`&mut` types that arise from using match ergonomics, i.e.
260/// from matching a reference type with a non-reference pattern. E.g. when `Some(x)` matches on
261/// `&mut Option<&T>`, `x` gets type `&mut &T` and the outer `&mut` is considered "inherited".
262#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for InheritedRefMatchRule { }
#[automatically_derived]
impl ::core::clone::Clone for InheritedRefMatchRule {
#[inline]
fn clone(&self) -> InheritedRefMatchRule {
let _: ::core::clone::AssertParamIsClone<bool>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for InheritedRefMatchRule { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for InheritedRefMatchRule {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
InheritedRefMatchRule::EatOuter =>
::core::fmt::Formatter::write_str(f, "EatOuter"),
InheritedRefMatchRule::EatInner =>
::core::fmt::Formatter::write_str(f, "EatInner"),
InheritedRefMatchRule::EatBoth { consider_inherited_ref: __self_0
} =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"EatBoth", "consider_inherited_ref", &__self_0),
}
}
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for InheritedRefMatchRule { }
#[automatically_derived]
impl ::core::cmp::PartialEq for InheritedRefMatchRule {
#[inline]
fn eq(&self, other: &InheritedRefMatchRule) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(InheritedRefMatchRule::EatBoth {
consider_inherited_ref: __self_0 },
InheritedRefMatchRule::EatBoth {
consider_inherited_ref: __arg1_0 }) => __self_0 == __arg1_0,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for InheritedRefMatchRule {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<bool>;
}
}Eq)]
263enum InheritedRefMatchRule {
264/// Reference patterns consume only the inherited reference if possible, regardless of whether
265 /// the underlying type being matched against is a reference type. If there is no inherited
266 /// reference, a reference will be consumed from the underlying type.
267EatOuter,
268/// Reference patterns consume only a reference from the underlying type if possible. If the
269 /// underlying type is not a reference type, the inherited reference will be consumed.
270EatInner,
271/// When the underlying type is a reference type, reference patterns consume both layers of
272 /// reference, i.e. they both reset the binding mode and consume the reference type.
273EatBoth {
274/// If `true`, an inherited reference will be considered when determining whether a reference
275 /// pattern matches a given type:
276 /// - If the underlying type is not a reference, a reference pattern may eat the inherited reference;
277 /// - If the underlying type is a reference, a reference pattern matches if it can eat either one
278 /// of the underlying and inherited references. E.g. a `&mut` pattern is allowed if either the
279 /// underlying type is `&mut` or the inherited reference is `&mut`.
280 ///
281 /// If `false`, a reference pattern is only matched against the underlying type.
282 /// This is `false` for stable Rust and `true` for both the `ref_pat_eat_one_layer_2024` and
283 /// `ref_pat_eat_one_layer_2024_structural` feature gates.
284consider_inherited_ref: bool,
285 },
286}
287288/// When checking patterns containing paths, we need to know the path's resolution to determine
289/// whether to apply match ergonomics and implicitly dereference the scrutinee. For instance, when
290/// the `deref_patterns` feature is enabled and we're matching against a scrutinee of type
291/// `Cow<'a, Option<u8>>`, we insert an implicit dereference to allow the pattern `Some(_)` to type,
292/// but we must not dereference it when checking the pattern `Cow::Borrowed(_)`.
293///
294/// `ResolvedPat` contains the information from resolution needed to determine match ergonomics
295/// adjustments, and to finish checking the pattern once we know its adjusted type.
296#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl<'tcx> ::core::clone::TrivialClone for ResolvedPat<'tcx> { }
#[automatically_derived]
impl<'tcx> ::core::clone::Clone for ResolvedPat<'tcx> {
#[inline]
fn clone(&self) -> ResolvedPat<'tcx> {
let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
let _: ::core::clone::AssertParamIsClone<ResolvedPatKind<'tcx>>;
*self
}
}Clone, #[automatically_derived]
impl<'tcx> ::core::marker::Copy for ResolvedPat<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for ResolvedPat<'tcx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field2_finish(f, "ResolvedPat",
"ty", &self.ty, "kind", &&self.kind)
}
}Debug)]
297struct ResolvedPat<'tcx> {
298/// The type of the pattern, to be checked against the type of the scrutinee after peeling. This
299 /// is also used to avoid peeling the scrutinee's constructors (see the `Cow` example above).
300ty: Ty<'tcx>,
301 kind: ResolvedPatKind<'tcx>,
302}
303304#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl<'tcx> ::core::clone::TrivialClone for ResolvedPatKind<'tcx> { }
#[automatically_derived]
impl<'tcx> ::core::clone::Clone for ResolvedPatKind<'tcx> {
#[inline]
fn clone(&self) -> ResolvedPatKind<'tcx> {
let _: ::core::clone::AssertParamIsClone<Res>;
let _:
::core::clone::AssertParamIsClone<&'tcx [hir::PathSegment<'tcx>]>;
let _: ::core::clone::AssertParamIsClone<&'tcx VariantDef>;
let _: ::core::clone::AssertParamIsClone<&'tcx VariantDef>;
*self
}
}Clone, #[automatically_derived]
impl<'tcx> ::core::marker::Copy for ResolvedPatKind<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for ResolvedPatKind<'tcx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
ResolvedPatKind::Path {
res: __self_0, pat_res: __self_1, segments: __self_2 } =>
::core::fmt::Formatter::debug_struct_field3_finish(f, "Path",
"res", __self_0, "pat_res", __self_1, "segments",
&__self_2),
ResolvedPatKind::Struct { variant: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"Struct", "variant", &__self_0),
ResolvedPatKind::TupleStruct { res: __self_0, variant: __self_1 }
=>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"TupleStruct", "res", __self_0, "variant", &__self_1),
}
}
}Debug)]
305enum ResolvedPatKind<'tcx> {
306 Path { res: Res, pat_res: Res, segments: &'tcx [hir::PathSegment<'tcx>] },
307 Struct { variant: &'tcx VariantDef },
308 TupleStruct { res: Res, variant: &'tcx VariantDef },
309}
310311impl<'tcx> ResolvedPat<'tcx> {
312fn adjust_mode(&self) -> AdjustMode {
313if let ResolvedPatKind::Path { res, .. } = self.kind
314 && #[allow(non_exhaustive_omitted_patterns)] match res {
Res::Def(DefKind::Const | DefKind::AssocConst, _) => true,
_ => false,
}matches!(res, Res::Def(DefKind::Const | DefKind::AssocConst, _))315 {
316// These constants can be of a reference type, e.g. `const X: &u8 = &0;`.
317 // Peeling the reference types too early will cause type checking failures.
318 // Although it would be possible to *also* peel the types of the constants too.
319AdjustMode::Pass320 } else {
321// The remaining possible resolutions for path, struct, and tuple struct patterns are
322 // ADT constructors. As such, we may peel references freely, but we must not peel the
323 // ADT itself from the scrutinee if it's a smart pointer.
324AdjustMode::peel_until_adt(self.ty.ty_adt_def().map(|adt| adt.did()))
325 }
326 }
327}
328329impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
330/// Experimental pattern feature: after matching against a shared reference, do we limit the
331 /// default binding mode in subpatterns to be `ref` when it would otherwise be `ref mut`?
332 /// This corresponds to Rule 3 of RFC 3627.
333fn downgrade_mut_inside_shared(&self) -> bool {
334// NB: RFC 3627 proposes stabilizing Rule 3 in all editions. If we adopt the same behavior
335 // across all editions, this may be removed.
336self.tcx.features().ref_pat_eat_one_layer_2024_structural()
337 }
338339/// Experimental pattern feature: when do reference patterns match against inherited references?
340 /// This corresponds to variations on Rule 4 of RFC 3627.
341fn ref_pat_matches_inherited_ref(&self, edition: Edition) -> InheritedRefMatchRule {
342// NB: The particular rule used here is likely to differ across editions, so calls to this
343 // may need to become edition checks after match ergonomics stabilize.
344if edition.at_least_rust_2024() {
345if self.tcx.features().ref_pat_eat_one_layer_2024() {
346 InheritedRefMatchRule::EatOuter347 } else if self.tcx.features().ref_pat_eat_one_layer_2024_structural() {
348 InheritedRefMatchRule::EatInner349 } else {
350// Currently, matching against an inherited ref on edition 2024 is an error.
351 // Use `EatBoth` as a fallback to be similar to stable Rust.
352InheritedRefMatchRule::EatBoth { consider_inherited_ref: false }
353 }
354 } else {
355 InheritedRefMatchRule::EatBoth {
356 consider_inherited_ref: self.tcx.features().ref_pat_eat_one_layer_2024()
357 || self.tcx.features().ref_pat_eat_one_layer_2024_structural(),
358 }
359 }
360 }
361362/// Experimental pattern feature: do `&` patterns match against `&mut` references, treating them
363 /// as if they were shared references? This corresponds to Rule 5 of RFC 3627.
364fn ref_pat_matches_mut_ref(&self) -> bool {
365// NB: RFC 3627 proposes stabilizing Rule 5 in all editions. If we adopt the same behavior
366 // across all editions, this may be removed.
367self.tcx.features().ref_pat_eat_one_layer_2024()
368 || self.tcx.features().ref_pat_eat_one_layer_2024_structural()
369 }
370371/// Type check the given top level pattern against the `expected` type.
372 ///
373 /// If a `Some(span)` is provided and `origin_expr` holds,
374 /// then the `span` represents the scrutinee's span.
375 /// The scrutinee is found in e.g. `match scrutinee { ... }` and `let pat = scrutinee;`.
376 ///
377 /// Otherwise, `Some(span)` represents the span of a type expression
378 /// which originated the `expected` type.
379pub(crate) fn check_pat_top(
380&self,
381 pat: &'tcx Pat<'tcx>,
382 expected: Ty<'tcx>,
383 span: Option<Span>,
384 origin_expr: Option<&'tcx hir::Expr<'tcx>>,
385 decl_origin: Option<DeclOrigin<'tcx>>,
386 ) {
387let top_info = TopInfo { expected, origin_expr, span, hir_id: pat.hir_id };
388let pat_info = PatInfo {
389 binding_mode: ByRef::No,
390 max_pinnedness: PinnednessCap::Not,
391 max_ref_mutbl: MutblCap::Mut,
392top_info,
393decl_origin,
394 current_depth: 0,
395 };
396self.check_pat(pat, expected, pat_info);
397 }
398399/// Type check the given `pat` against the `expected` type
400 /// with the provided `binding_mode` (default binding mode).
401 ///
402 /// Outside of this module, `check_pat_top` should always be used.
403 /// Conversely, inside this module, `check_pat_top` should never be used.
404{}
#[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("check_pat",
"rustc_hir_typeck::pat", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(404u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("pat")
}> =
::tracing::__macro_support::FieldName::new("pat");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("expected")
}> =
::tracing::__macro_support::FieldName::new("expected");
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(&pat)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&expected)
as &dyn ::tracing::field::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: () = loop {};
return __tracing_attr_fake_return;
}
{
let opt_path_res =
match pat.kind {
PatKind::Expr(PatExpr {
kind: PatExprKind::Path(qpath), hir_id, span }) => {
Some(self.resolve_pat_path(*hir_id, *span, qpath))
}
PatKind::Struct(ref qpath, ..) =>
Some(self.resolve_pat_struct(pat, qpath)),
PatKind::TupleStruct(ref qpath, ..) =>
Some(self.resolve_pat_tuple_struct(pat, qpath)),
_ => None,
};
let adjust_mode = self.calc_adjust_mode(pat, opt_path_res);
let ty =
self.check_pat_inner(pat, opt_path_res, adjust_mode, expected,
pat_info);
self.write_ty(pat.hir_id, ty);
if let Some(derefed_tys) =
self.typeck_results.borrow().pat_adjustments().get(pat.hir_id)
&&
derefed_tys.iter().any(|adjust|
adjust.kind == PatAdjust::OverloadedDeref) {
self.register_deref_mut_bounds_if_needed(pat.span, pat,
derefed_tys.iter().filter_map(|adjust|
match adjust.kind {
PatAdjust::OverloadedDeref => Some(adjust.source),
PatAdjust::BuiltinDeref | PatAdjust::PinDeref => None,
}));
}
}
}
}#[instrument(level = "debug", skip(self, pat_info))]405fn check_pat(&self, pat: &'tcx Pat<'tcx>, expected: Ty<'tcx>, pat_info: PatInfo<'tcx>) {
406// For patterns containing paths, we need the path's resolution to determine whether to
407 // implicitly dereference the scrutinee before matching.
408let opt_path_res = match pat.kind {
409 PatKind::Expr(PatExpr { kind: PatExprKind::Path(qpath), hir_id, span }) => {
410Some(self.resolve_pat_path(*hir_id, *span, qpath))
411 }
412 PatKind::Struct(ref qpath, ..) => Some(self.resolve_pat_struct(pat, qpath)),
413 PatKind::TupleStruct(ref qpath, ..) => Some(self.resolve_pat_tuple_struct(pat, qpath)),
414_ => None,
415 };
416let adjust_mode = self.calc_adjust_mode(pat, opt_path_res);
417let ty = self.check_pat_inner(pat, opt_path_res, adjust_mode, expected, pat_info);
418self.write_ty(pat.hir_id, ty);
419420// If we implicitly inserted overloaded dereferences before matching check the pattern to
421 // see if the dereferenced types need `DerefMut` bounds.
422if let Some(derefed_tys) = self.typeck_results.borrow().pat_adjustments().get(pat.hir_id)
423 && derefed_tys.iter().any(|adjust| adjust.kind == PatAdjust::OverloadedDeref)
424 {
425self.register_deref_mut_bounds_if_needed(
426 pat.span,
427 pat,
428 derefed_tys.iter().filter_map(|adjust| match adjust.kind {
429 PatAdjust::OverloadedDeref => Some(adjust.source),
430 PatAdjust::BuiltinDeref | PatAdjust::PinDeref => None,
431 }),
432 );
433 }
434435// (note_1): In most of the cases where (note_1) is referenced
436 // (literals and constants being the exception), we relate types
437 // using strict equality, even though subtyping would be sufficient.
438 // There are a few reasons for this, some of which are fairly subtle
439 // and which cost me (nmatsakis) an hour or two debugging to remember,
440 // so I thought I'd write them down this time.
441 //
442 // 1. There is no loss of expressiveness here, though it does
443 // cause some inconvenience. What we are saying is that the type
444 // of `x` becomes *exactly* what is expected. This can cause unnecessary
445 // errors in some cases, such as this one:
446 //
447 // ```
448 // fn foo<'x>(x: &'x i32) {
449 // let a = 1;
450 // let mut z = x;
451 // z = &a;
452 // }
453 // ```
454 //
455 // The reason we might get an error is that `z` might be
456 // assigned a type like `&'x i32`, and then we would have
457 // a problem when we try to assign `&a` to `z`, because
458 // the lifetime of `&a` (i.e., the enclosing block) is
459 // shorter than `'x`.
460 //
461 // HOWEVER, this code works fine. The reason is that the
462 // expected type here is whatever type the user wrote, not
463 // the initializer's type. In this case the user wrote
464 // nothing, so we are going to create a type variable `Z`.
465 // Then we will assign the type of the initializer (`&'x i32`)
466 // as a subtype of `Z`: `&'x i32 <: Z`. And hence we
467 // will instantiate `Z` as a type `&'0 i32` where `'0` is
468 // a fresh region variable, with the constraint that `'x : '0`.
469 // So basically we're all set.
470 //
471 // Note that there are two tests to check that this remains true
472 // (`regions-reassign-{match,let}-bound-pointer.rs`).
473 //
474 // 2. An outdated issue related to the old HIR borrowck. See the test
475 // `regions-relate-bound-regions-on-closures-to-inference-variables.rs`,
476}
477478// Helper to avoid resolving the same path pattern several times.
479fn check_pat_inner(
480&self,
481 pat: &'tcx Pat<'tcx>,
482 opt_path_res: Option<Result<ResolvedPat<'tcx>, ErrorGuaranteed>>,
483 adjust_mode: AdjustMode,
484 expected: Ty<'tcx>,
485 pat_info: PatInfo<'tcx>,
486 ) -> Ty<'tcx> {
487#[cfg(debug_assertions)]
488if #[allow(non_exhaustive_omitted_patterns)] match pat_info.binding_mode {
ByRef::Yes(_, Mutability::Mut) => true,
_ => false,
}matches!(pat_info.binding_mode, ByRef::Yes(_, Mutability::Mut))489 && pat_info.max_ref_mutbl != MutblCap::Mut490 && self.downgrade_mut_inside_shared()
491 {
492bug_impl(Some(pat.span), format_args!("Pattern mutability cap violated!"),
Location::caller());span_bug!(pat.span, "Pattern mutability cap violated!");
493 }
494495// Resolve type if needed.
496let expected = if let AdjustMode::Peel { .. } = adjust_mode497 && pat.default_binding_modes
498 {
499self.deeply_resolve_ignoring_regions_with_obligations(expected)
500 } else {
501expected502 };
503let old_pat_info = pat_info;
504let pat_info = PatInfo { current_depth: old_pat_info.current_depth + 1, ..old_pat_info };
505506match pat.kind {
507// Peel off a `&` or `&mut`from the scrutinee type. See the examples in
508 // `tests/ui/rfcs/rfc-2005-default-binding-mode`.
509_ if let AdjustMode::Peel { kind: peel_kind } = adjust_mode510 && pat.default_binding_modes
511 && let &ty::Ref(_, inner_ty, inner_mutability) = expected.kind()
512 && self.should_peel_ref(peel_kind, expected) =>
513 {
514{
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/pat.rs:514",
"rustc_hir_typeck::pat", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(514u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&["message"],
::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(&format_args!("inspecting {0:?}",
expected) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("inspecting {:?}", expected);
515516{
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/pat.rs:516",
"rustc_hir_typeck::pat", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(516u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&["message"],
::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(&format_args!("current discriminant is Ref, inserting implicit deref")
as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("current discriminant is Ref, inserting implicit deref");
517// Preserve the reference type. We'll need it later during THIR lowering.
518self.typeck_results
519 .borrow_mut()
520 .pat_adjustments_mut()
521 .entry(pat.hir_id)
522 .or_default()
523 .push(PatAdjustment { kind: PatAdjust::BuiltinDeref, source: expected });
524525// Use the old pat info to keep `current_depth` to its old value.
526let new_pat_info =
527self.adjust_pat_info(Pinnedness::Not, inner_mutability, old_pat_info);
528529// Recurse with the new expected type.
530self.check_pat_inner(pat, opt_path_res, adjust_mode, inner_ty, new_pat_info)
531 }
532// If `pin_ergonomics` is enabled, peel the `&pin` from the pinned reference type. See the
533 // examples in `tests/ui/async-await/pin-ergonomics/`.
534_ if self.tcx.features().pin_ergonomics()
535 && let AdjustMode::Peel { kind: peel_kind } = adjust_mode536 && pat.default_binding_modes
537 && self.should_peel_smart_pointer(peel_kind, expected)
538 && let Some(pinned_ty) = expected.pinned_ty()
539// Currently, only pinned reference is specially handled, leaving other
540 // pinned types (e.g. `Pin<Box<T>>` to deref patterns) handled as a
541 // deref pattern.
542&& let &ty::Ref(_, inner_ty, inner_mutability) = pinned_ty.kind() =>
543 {
544{
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/pat.rs:544",
"rustc_hir_typeck::pat", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(544u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&["message"],
::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(&format_args!("scrutinee ty {0:?} is a pinned reference, inserting pin deref",
expected) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("scrutinee ty {expected:?} is a pinned reference, inserting pin deref");
545546// Use the old pat info to keep `current_depth` to its old value.
547let new_pat_info =
548self.adjust_pat_info(Pinnedness::Pinned, inner_mutability, old_pat_info);
549550self.check_deref_pattern(
551pat,
552opt_path_res,
553adjust_mode,
554expected,
555inner_ty,
556 PatAdjust::PinDeref,
557new_pat_info,
558 )
559 }
560// If `deref_patterns` is enabled, peel a smart pointer from the scrutinee type. See the
561 // examples in `tests/ui/pattern/deref_patterns/`.
562_ if self.tcx.features().deref_patterns()
563 && let AdjustMode::Peel { kind: peel_kind } = adjust_mode564 && pat.default_binding_modes
565 && self.should_peel_smart_pointer(peel_kind, expected) =>
566 {
567{
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/pat.rs:567",
"rustc_hir_typeck::pat", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(567u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&["message"],
::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(&format_args!("scrutinee ty {0:?} is a smart pointer, inserting pin deref",
expected) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("scrutinee ty {expected:?} is a smart pointer, inserting pin deref");
568569// The scrutinee is a smart pointer; implicitly dereference it. This adds a
570 // requirement that `expected: DerefPure`.
571let inner_ty = self.deref_pat_target(pat.span, expected);
572// Once we've checked `pat`, we'll add a `DerefMut` bound if it contains any
573 // `ref mut` bindings. See `Self::register_deref_mut_bounds_if_needed`.
574575self.check_deref_pattern(
576pat,
577opt_path_res,
578adjust_mode,
579expected,
580inner_ty,
581 PatAdjust::OverloadedDeref,
582old_pat_info,
583 )
584 }
585 PatKind::Missing | PatKind::Wild | PatKind::Err(_) => expected,
586// We allow any type here; we ensure that the type is uninhabited during match checking.
587PatKind::Never => expected,
588 PatKind::Expr(PatExpr { kind: PatExprKind::Path(_), hir_id, .. }) => {
589let ty = match opt_path_res.unwrap() {
590Ok(ref pr) => {
591self.check_pat_path(pat.hir_id, pat.span, pr, expected, &pat_info.top_info)
592 }
593Err(guar) => Ty::new_error(self.tcx, guar),
594 };
595self.write_ty(*hir_id, ty);
596ty597 }
598 PatKind::Expr(expr @ PatExpr { kind: PatExprKind::Lit { lit, .. }, .. }) => {
599self.check_pat_lit(pat.span, expr, &lit.node, expected, &pat_info.top_info)
600 }
601 PatKind::Range(lhs, rhs, _) => {
602self.check_pat_range(pat.span, lhs, rhs, expected, &pat_info.top_info)
603 }
604 PatKind::Binding(ba, var_id, ident, sub) => {
605self.check_pat_ident(pat, ba, var_id, ident, sub, expected, pat_info)
606 }
607 PatKind::TupleStruct(ref qpath, subpats, ddpos) => match opt_path_res.unwrap() {
608Ok(ResolvedPat { ty, kind: ResolvedPatKind::TupleStruct { res, variant } }) => self609 .check_pat_tuple_struct(
610pat, qpath, subpats, ddpos, res, ty, variant, expected, pat_info,
611 ),
612Err(guar) => {
613let ty_err = Ty::new_error(self.tcx, guar);
614for subpat in subpats {
615self.check_pat(subpat, ty_err, pat_info);
616 }
617ty_err618 }
619Ok(pr) => bug_impl(Some(pat.span),
format_args!("tuple struct pattern resolved to {0:?}", pr),
Location::caller())span_bug!(pat.span, "tuple struct pattern resolved to {pr:?}"),
620 },
621 PatKind::Struct(_, fields, has_rest_pat) => match opt_path_res.unwrap() {
622Ok(ResolvedPat { ty, kind: ResolvedPatKind::Struct { variant } }) => self623 .check_pat_struct(
624pat,
625fields,
626has_rest_pat.is_some(),
627ty,
628variant,
629expected,
630pat_info,
631 ),
632Err(guar) => {
633let ty_err = Ty::new_error(self.tcx, guar);
634for field in fields {
635self.check_pat(field.pat, ty_err, pat_info);
636 }
637ty_err638 }
639Ok(pr) => bug_impl(Some(pat.span), format_args!("struct pattern resolved to {0:?}", pr),
Location::caller())span_bug!(pat.span, "struct pattern resolved to {pr:?}"),
640 },
641 PatKind::Guard(pat, cond) => {
642self.check_pat(pat, expected, pat_info);
643self.check_expr_has_type_or_error(cond, self.tcx.types.bool, |_| {});
644expected645 }
646 PatKind::Or(pats) => {
647for pat in pats {
648self.check_pat(pat, expected, pat_info);
649 }
650expected651 }
652 PatKind::Tuple(elements, ddpos) => {
653self.check_pat_tuple(pat.span, elements, ddpos, expected, pat_info)
654 }
655 PatKind::Deref(inner) => self.check_pat_deref(pat.span, inner, expected, pat_info),
656 PatKind::Ref(inner, pinned, mutbl) => {
657self.check_pat_ref(pat, inner, pinned, mutbl, expected, pat_info)
658 }
659 PatKind::Slice(before, slice, after) => {
660self.check_pat_slice(pat.span, before, slice, after, expected, pat_info)
661 }
662 }
663 }
664665fn adjust_pat_info(
666&self,
667 inner_pinnedness: Pinnedness,
668 inner_mutability: Mutability,
669 pat_info: PatInfo<'tcx>,
670 ) -> PatInfo<'tcx> {
671let mut binding_mode = match pat_info.binding_mode {
672// If default binding mode is by value, make it `ref`, `ref mut`, `ref pin const`
673 // or `ref pin mut` (depending on whether we observe `&`, `&mut`, `&pin const` or
674 // `&pin mut`).
675ByRef::No => ByRef::Yes(inner_pinnedness, inner_mutability),
676 ByRef::Yes(pinnedness, mutability) => {
677let pinnedness = match pinnedness {
678// When `ref`, stay a `ref` (on `&`) or downgrade to `ref pin` (on `&pin`).
679Pinnedness::Not => inner_pinnedness,
680// When `ref pin`, stay a `ref pin`.
681 // This is because we cannot get an `&mut T` from `&mut &pin mut T` unless `T: Unpin`.
682 // Note that `&T` and `&mut T` are `Unpin`, which implies
683 // `& &pin const T` <-> `&pin const &T` and `&mut &pin mut T` <-> `&pin mut &mut T`
684 // (i.e. mutually coercible).
685Pinnedness::Pinned => Pinnedness::Pinned,
686 };
687688let mutability = match mutability {
689// When `ref mut`, stay a `ref mut` (on `&mut`) or downgrade to `ref` (on `&`).
690Mutability::Mut => inner_mutability,
691// Once a `ref`, always a `ref`.
692 // This is because a `& &mut` cannot mutate the underlying value.
693Mutability::Not => Mutability::Not,
694 };
695 ByRef::Yes(pinnedness, mutability)
696 }
697 };
698699let PatInfo { mut max_ref_mutbl, mut max_pinnedness, .. } = pat_info;
700if self.downgrade_mut_inside_shared() {
701binding_mode = binding_mode.cap_ref_mutability(max_ref_mutbl.as_mutbl());
702 }
703match binding_mode {
704 ByRef::Yes(_, Mutability::Not) => max_ref_mutbl = MutblCap::Not,
705 ByRef::Yes(Pinnedness::Pinned, _) => max_pinnedness = PinnednessCap::Pinned,
706_ => {}
707 }
708{
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/pat.rs:708",
"rustc_hir_typeck::pat", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(708u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&["message"],
::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(&format_args!("default binding mode is now {0:?}",
binding_mode) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("default binding mode is now {:?}", binding_mode);
709PatInfo { binding_mode, max_pinnedness, max_ref_mutbl, ..pat_info }
710 }
711712fn check_deref_pattern(
713&self,
714 pat: &'tcx Pat<'tcx>,
715 opt_path_res: Option<Result<ResolvedPat<'tcx>, ErrorGuaranteed>>,
716 adjust_mode: AdjustMode,
717 expected: Ty<'tcx>,
718mut inner_ty: Ty<'tcx>,
719 pat_adjust_kind: PatAdjust,
720 pat_info: PatInfo<'tcx>,
721 ) -> Ty<'tcx> {
722if true {
if !!#[allow(non_exhaustive_omitted_patterns)] match pat_adjust_kind {
PatAdjust::BuiltinDeref => true,
_ => false,
} {
{
::core::panicking::panic_fmt(format_args!("unexpected deref pattern for builtin reference type {0:?}",
expected));
}
};
};debug_assert!(
723 !matches!(pat_adjust_kind, PatAdjust::BuiltinDeref),
724"unexpected deref pattern for builtin reference type {expected:?}",
725 );
726727let mut typeck_results = self.typeck_results.borrow_mut();
728let mut pat_adjustments_table = typeck_results.pat_adjustments_mut();
729let pat_adjustments = pat_adjustments_table.entry(pat.hir_id).or_default();
730// We may reach the recursion limit if a user matches on a type `T` satisfying
731 // `T: Deref<Target = T>`; error gracefully in this case.
732 // FIXME(deref_patterns): If `deref_patterns` stabilizes, it may make sense to move
733 // this check out of this branch. Alternatively, this loop could be implemented with
734 // autoderef and this check removed. For now though, don't break code compiling on
735 // stable with lots of `&`s and a low recursion limit, if anyone's done that.
736if self.tcx.recursion_limit().value_within_limit(pat_adjustments.len()) {
737// Preserve the smart pointer type for THIR lowering and closure upvar analysis.
738pat_adjustments.push(PatAdjustment { kind: pat_adjust_kind, source: expected });
739 } else {
740let guar = report_autoderef_recursion_limit_error(self.tcx, pat.span, expected);
741inner_ty = Ty::new_error(self.tcx, guar);
742 }
743drop(typeck_results);
744745// Recurse, using the old pat info to keep `current_depth` to its old value.
746 // Peeling smart pointers does not update the default binding mode.
747self.check_pat_inner(pat, opt_path_res, adjust_mode, inner_ty, pat_info)
748 }
749750/// How should the binding mode and expected type be adjusted?
751 ///
752 /// When the pattern contains a path, `opt_path_res` must be `Some(path_res)`.
753fn calc_adjust_mode(
754&self,
755 pat: &'tcx Pat<'tcx>,
756 opt_path_res: Option<Result<ResolvedPat<'tcx>, ErrorGuaranteed>>,
757 ) -> AdjustMode {
758match &pat.kind {
759// Type checking these product-like types successfully always require
760 // that the expected type be of those types and not reference types.
761PatKind::Tuple(..) | PatKind::Range(..) | PatKind::Slice(..) => AdjustMode::peel_all(),
762// When checking an explicit deref pattern, only peel reference types.
763PatKind::Deref(_) => {
764 AdjustMode::Peel { kind: PeelKind::ExplicitDerefPat }
765 }
766// A never pattern behaves somewhat like a literal or unit variant.
767PatKind::Never => AdjustMode::peel_all(),
768// For patterns with paths, how we peel the scrutinee depends on the path's resolution.
769PatKind::Struct(..)
770 | PatKind::TupleStruct(..)
771 | PatKind::Expr(PatExpr { kind: PatExprKind::Path(_), .. }) => {
772// If there was an error resolving the path, default to peeling everything.
773opt_path_res.unwrap().map_or(AdjustMode::peel_all(), |pr| pr.adjust_mode())
774 }
775776// String and byte-string literals result in types `&str` and `&[u8]` respectively.
777 // All other literals result in non-reference types.
778 // As a result, we allow `if let 0 = &&0 {}` but not `if let "foo" = &&"foo" {}` unless
779 // `deref_patterns` is enabled.
780PatKind::Expr(lt) => {
781// Path patterns have already been handled, and inline const blocks currently
782 // aren't possible to write, so any handling for them would be untested.
783if truecfg!(debug_assertions)784 && self.tcx.features().deref_patterns()
785 && !#[allow(non_exhaustive_omitted_patterns)] match lt.kind {
PatExprKind::Lit { .. } => true,
_ => false,
}matches!(lt.kind, PatExprKind::Lit { .. })786 {
787bug_impl(Some(lt.span),
format_args!("FIXME(deref_patterns): adjust mode unimplemented for {0:?}",
lt.kind), Location::caller());span_bug!(
788 lt.span,
789"FIXME(deref_patterns): adjust mode unimplemented for {:?}",
790 lt.kind
791 );
792 }
793// Call `deeply_resolve_ignoring_regions` here for inline const blocks.
794let lit_ty = self.deeply_resolve_ignoring_regions(self.check_pat_expr_unadjusted(lt));
795// If `deref_patterns` is enabled, allow `if let "foo" = &&"foo" {}`.
796if self.tcx.features().deref_patterns() {
797let mut peeled_ty = lit_ty;
798let mut pat_ref_layers = 0;
799while let ty::Ref(_, inner_ty, mutbl) =
800*self.deeply_resolve_ignoring_regions_with_obligations(peeled_ty).kind()
801 {
802// We rely on references at the head of constants being immutable.
803if true {
if !mutbl.is_not() {
::core::panicking::panic("assertion failed: mutbl.is_not()")
};
};debug_assert!(mutbl.is_not());
804 pat_ref_layers += 1;
805 peeled_ty = inner_ty;
806 }
807 AdjustMode::Peel {
808 kind: PeelKind::Implicit { until_adt: None, pat_ref_layers },
809 }
810 } else {
811if lit_ty.is_ref() { AdjustMode::Pass } else { AdjustMode::peel_all() }
812 }
813 }
814815// Ref patterns are complicated, we handle them in `check_pat_ref`.
816PatKind::Ref(..)
817// No need to do anything on a missing pattern.
818| PatKind::Missing819// A `_` pattern works with any expected type, so there's no need to do anything.
820| PatKind::Wild821// A malformed pattern doesn't have an expected type, so let's just accept any type.
822| PatKind::Err(_)
823// Bindings also work with whatever the expected type is,
824 // and moreover if we peel references off, that will give us the wrong binding type.
825 // Also, we can have a subpattern `binding @ pat`.
826 // Each side of the `@` should be treated independently (like with OR-patterns).
827| PatKind::Binding(..)
828// An OR-pattern just propagates to each individual alternative.
829 // This is maximally flexible, allowing e.g., `Some(mut x) | &Some(mut x)`.
830 // In that example, `Some(mut x)` results in `Peel` whereas `&Some(mut x)` in `Reset`.
831| PatKind::Or(_)
832// Like or-patterns, guard patterns just propagate to their subpatterns.
833| PatKind::Guard(..) => AdjustMode::Pass,
834 }
835 }
836837/// Assuming `expected` is a reference type, determine whether to peel it before matching.
838fn should_peel_ref(&self, peel_kind: PeelKind, mut expected: Ty<'tcx>) -> bool {
839if true {
if !expected.is_ref() {
::core::panicking::panic("assertion failed: expected.is_ref()")
};
};debug_assert!(expected.is_ref());
840let pat_ref_layers = match peel_kind {
841 PeelKind::ExplicitDerefPat => 0,
842 PeelKind::Implicit { pat_ref_layers, .. } => pat_ref_layers,
843 };
844845// Most patterns don't have reference types, so we'll want to peel all references from the
846 // scrutinee before matching. To optimize for the common case, return early.
847if pat_ref_layers == 0 {
848return true;
849 }
850if true {
if !self.tcx.features().deref_patterns() {
{
::core::panicking::panic_fmt(format_args!("Peeling for patterns with reference types is gated by `deref_patterns`."));
}
};
};debug_assert!(
851self.tcx.features().deref_patterns(),
852"Peeling for patterns with reference types is gated by `deref_patterns`."
853);
854855// If the pattern has as many or more layers of reference as the expected type, we can match
856 // without peeling more, unless we find a smart pointer or `&mut` that we also need to peel.
857 // We don't treat `&` and `&mut` as interchangeable, but by peeling `&mut`s before matching,
858 // we can still, e.g., match on a `&mut str` with a string literal pattern. This is because
859 // string literal patterns may be used where `str` is expected.
860let mut expected_ref_layers = 0;
861while let ty::Ref(_, inner_ty, mutbl) = *expected.kind() {
862if mutbl.is_mut() {
863// Mutable references can't be in the final value of constants, thus they can't be
864 // at the head of their types, thus we should always peel `&mut`.
865return true;
866 }
867 expected_ref_layers += 1;
868 expected = inner_ty;
869 }
870pat_ref_layers < expected_ref_layers || self.should_peel_smart_pointer(peel_kind, expected)
871 }
872873/// Determine whether `expected` is a smart pointer type that should be peeled before matching.
874fn should_peel_smart_pointer(&self, peel_kind: PeelKind, expected: Ty<'tcx>) -> bool {
875// Explicit `deref!(_)` patterns match against smart pointers; don't peel in that case.
876if let PeelKind::Implicit { until_adt, .. } = peel_kind877// For simplicity, only apply overloaded derefs if `expected` is a known ADT.
878 // FIXME(deref_patterns): we'll get better diagnostics for users trying to
879 // implicitly deref generics if we allow them here, but primitives, tuples, and
880 // inference vars definitely should be stopped. Figure out what makes most sense.
881&& let ty::Adt(scrutinee_adt, _) = *expected.kind()
882// Don't peel if the pattern type already matches the scrutinee. E.g., stop here if
883 // matching on a `Cow<'a, T>` scrutinee with a `Cow::Owned(_)` pattern.
884&& until_adt != Some(scrutinee_adt.did())
885// At this point, the pattern isn't able to match `expected` without peeling. Check
886 // that it implements `Deref` before assuming it's a smart pointer, to get a normal
887 // type error instead of a missing impl error if not. This only checks for `Deref`,
888 // not `DerefPure`: we require that too, but we want a trait error if it's missing.
889&& let Some(deref_trait) = self.tcx.lang_items().deref_trait()
890 && self.type_implements_trait(deref_trait, [expected], self.param_env).may_apply()
891 {
892true
893} else {
894false
895}
896 }
897898fn check_pat_expr_unadjusted(&self, lt: &'tcx hir::PatExpr<'tcx>) -> Ty<'tcx> {
899let ty = match <.kind {
900 rustc_hir::PatExprKind::Lit { lit, negated } => {
901let ty = self.check_expr_lit(lit, lt.hir_id, Expectation::NoExpectation);
902if *negated {
903self.register_bound(
904ty,
905self.tcx.require_lang_item(LangItem::Neg, lt.span),
906ObligationCause::dummy_with_span(lt.span),
907 );
908 }
909ty910 }
911 rustc_hir::PatExprKind::Path(qpath) => {
912let (res, opt_ty, segments) =
913self.resolve_ty_and_res_fully_qualified_call(qpath, lt.hir_id, lt.span);
914self.instantiate_value_path(segments, opt_ty, res, lt.span, lt.span, lt.hir_id).0
915}
916 };
917self.write_ty(lt.hir_id, ty);
918ty919 }
920921fn check_pat_lit(
922&self,
923 span: Span,
924 expr: &hir::PatExpr<'tcx>,
925 lit_kind: &ast::LitKind,
926 expected: Ty<'tcx>,
927 ti: &TopInfo<'tcx>,
928 ) -> Ty<'tcx> {
929{
match expr.kind {
hir::PatExprKind::Lit { .. } => {}
ref left_val => {
::core::panicking::assert_matches_failed(left_val,
"hir::PatExprKind::Lit { .. }", ::core::option::Option::None);
}
}
};assert_matches!(expr.kind, hir::PatExprKind::Lit { .. });
930931// We've already computed the type above (when checking for a non-ref pat),
932 // so avoid computing it again.
933let ty = self.node_ty(expr.hir_id);
934935// Byte string patterns behave the same way as array patterns
936 // They can denote both statically and dynamically-sized byte arrays.
937 // Additionally, when `deref_patterns` is enabled, byte string literal patterns may have
938 // types `[u8]` or `[u8; N]`, in order to type, e.g., `deref!(b"..."): Vec<u8>`.
939let mut pat_ty = ty;
940if #[allow(non_exhaustive_omitted_patterns)] match lit_kind {
ast::LitKind::ByteStr(..) => true,
_ => false,
}matches!(lit_kind, ast::LitKind::ByteStr(..)) {
941let tcx = self.tcx;
942let expected = self.structurally_resolve_type(span, expected);
943match *expected.kind() {
944// Allow `b"...": &[u8]`
945ty::Ref(_, inner_ty, _)
946if self947 .deeply_resolve_ignoring_regions_with_obligations(inner_ty)
948 .is_slice() =>
949 {
950{
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/pat.rs:950",
"rustc_hir_typeck::pat", ::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(950u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&["message",
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("expr.hir_id.local_id")
}> =
::tracing::__macro_support::FieldName::new("expr.hir_id.local_id");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::TRACE <=
::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(&format_args!("polymorphic byte string lit")
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&expr.hir_id.local_id)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};trace!(?expr.hir_id.local_id, "polymorphic byte string lit");
951pat_ty = Ty::new_imm_ref(
952tcx,
953tcx.lifetimes.re_static,
954Ty::new_slice(tcx, tcx.types.u8),
955 );
956 }
957// Allow `b"...": [u8; 3]` for `deref_patterns`
958ty::Array(..) if tcx.features().deref_patterns() => {
959pat_ty = match *ty.kind() {
960 ty::Ref(_, inner_ty, _) => inner_ty,
961_ => bug_impl(Some(span),
format_args!("found byte string literal with non-ref type {0:?}", ty),
Location::caller())span_bug!(span, "found byte string literal with non-ref type {ty:?}"),
962 }
963 }
964// Allow `b"...": [u8]` for `deref_patterns`
965ty::Slice(..) if tcx.features().deref_patterns() => {
966pat_ty = Ty::new_slice(tcx, tcx.types.u8);
967 }
968// Otherwise, `b"...": &[u8; 3]`
969_ => {}
970 }
971 }
972973// When `deref_patterns` is enabled, in order to allow `deref!("..."): String`, we allow
974 // string literal patterns to have type `str`. This is accounted for when lowering to MIR.
975if self.tcx.features().deref_patterns()
976 && #[allow(non_exhaustive_omitted_patterns)] match lit_kind {
ast::LitKind::Str(..) => true,
_ => false,
}matches!(lit_kind, ast::LitKind::Str(..))977 && self.deeply_resolve_ignoring_regions_with_obligations(expected).is_str()
978 {
979pat_ty = self.tcx.types.str_;
980 }
981982// Somewhat surprising: in this case, the subtyping relation goes the
983 // opposite way as the other cases. Actually what we really want is not
984 // a subtyping relation at all but rather that there exists a LUB
985 // (so that they can be compared). However, in practice, constants are
986 // always scalars or strings. For scalars subtyping is irrelevant,
987 // and for strings `ty` is type is `&'static str`, so if we say that
988 //
989 // &'static str <: expected
990 //
991 // then that's equivalent to there existing a LUB.
992let cause = self.pattern_cause(ti, span);
993if let Err(mut err) = self.demand_suptype_with_origin(&cause, expected, pat_ty) {
994// If scrutinee is String and pattern is &str, suggest .as_str()
995let expected = self.deeply_resolve_ignoring_regions_with_obligations(expected);
996if let ty::Adt(adt, _) = expected.kind()
997 && self.tcx.is_lang_item(adt.did(), LangItem::String)
998 && pat_ty.is_ref()
999 && pat_ty.peel_refs().is_str()
1000 && let Some(origin_expr) = ti.origin_expr
1001 {
1002err.span_suggestion_verbose(
1003origin_expr.span.shrink_to_hi(),
1004"consider converting the `String` to a `&str` using `.as_str()`",
1005".as_str()",
1006 Applicability::MachineApplicable,
1007 );
1008 }
1009err.emit();
1010 }
10111012pat_ty1013 }
10141015fn check_pat_range(
1016&self,
1017 span: Span,
1018 lhs: Option<&'tcx hir::PatExpr<'tcx>>,
1019 rhs: Option<&'tcx hir::PatExpr<'tcx>>,
1020 expected: Ty<'tcx>,
1021 ti: &TopInfo<'tcx>,
1022 ) -> Ty<'tcx> {
1023let calc_side = |opt_expr: Option<&'tcx hir::PatExpr<'tcx>>| match opt_expr {
1024None => None,
1025Some(expr) => {
1026let ty = self.check_pat_expr_unadjusted(expr);
1027// Check that the end-point is possibly of numeric or char type.
1028 // The early check here is not for correctness, but rather better
1029 // diagnostics (e.g. when `&str` is being matched, `expected` will
1030 // be peeled to `str` while ty here is still `&str`, if we don't
1031 // err early here, a rather confusing unification error will be
1032 // emitted instead).
1033let ty = self.deeply_resolve_ignoring_regions_with_obligations(ty);
1034let fail =
1035 !(ty.is_numeric() || ty.is_char() || ty.is_ty_var() || ty.references_error());
1036Some((fail, ty, expr.span))
1037 }
1038 };
1039let mut lhs = calc_side(lhs);
1040let mut rhs = calc_side(rhs);
10411042if let (Some((true, ..)), _) | (_, Some((true, ..))) = (lhs, rhs) {
1043// There exists a side that didn't meet our criteria that the end-point
1044 // be of a numeric or char type, as checked in `calc_side` above.
1045let guar = self.emit_err_pat_range(span, lhs, rhs);
1046return Ty::new_error(self.tcx, guar);
1047 }
10481049// Unify each side with `expected`.
1050 // Subtyping doesn't matter here, as the value is some kind of scalar.
1051let demand_eqtype = |x: &mut _, y| {
1052if let Some((ref mut fail, x_ty, x_span)) = *x1053 && let Err(mut err) = self.demand_eqtype_pat_diag(x_span, expected, x_ty, ti)
1054 {
1055if let Some((_, y_ty, y_span)) = y {
1056self.endpoint_has_type(&mut err, y_span, y_ty);
1057 }
1058err.emit();
1059*fail = true;
1060 }
1061 };
1062demand_eqtype(&mut lhs, rhs);
1063demand_eqtype(&mut rhs, lhs);
10641065if let (Some((true, ..)), _) | (_, Some((true, ..))) = (lhs, rhs) {
1066return Ty::new_misc_error(self.tcx);
1067 }
10681069// Find the unified type and check if it's of numeric or char type again.
1070 // This check is needed if both sides are inference variables.
1071 // We require types to be resolved here so that we emit inference failure
1072 // rather than "_ is not a char or numeric".
1073let ty = self.structurally_resolve_type(span, expected);
1074if !(ty.is_numeric() || ty.is_char() || ty.references_error()) {
1075if let Some((ref mut fail, _, _)) = lhs {
1076*fail = true;
1077 }
1078if let Some((ref mut fail, _, _)) = rhs {
1079*fail = true;
1080 }
1081let guar = self.emit_err_pat_range(span, lhs, rhs);
1082return Ty::new_error(self.tcx, guar);
1083 }
1084ty1085 }
10861087fn endpoint_has_type(&self, err: &mut Diag<'_>, span: Span, ty: Ty<'_>) {
1088if !ty.references_error() {
1089err.span_label(span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("this is of type `{0}`", ty))
})format!("this is of type `{ty}`"));
1090 }
1091 }
10921093fn emit_err_pat_range(
1094&self,
1095 span: Span,
1096 lhs: Option<(bool, Ty<'tcx>, Span)>,
1097 rhs: Option<(bool, Ty<'tcx>, Span)>,
1098 ) -> ErrorGuaranteed {
1099let span = match (lhs, rhs) {
1100 (Some((true, ..)), Some((true, ..))) => span,
1101 (Some((true, _, sp)), _) => sp,
1102 (_, Some((true, _, sp))) => sp,
1103_ => bug_impl(Some(span),
format_args!("emit_err_pat_range: no side failed or exists but still error?"),
Location::caller())span_bug!(span, "emit_err_pat_range: no side failed or exists but still error?"),
1104 };
1105let mut err = {
self.dcx().struct_span_err(span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("only `char` and numeric types are allowed in range patterns"))
})).with_code(E0029)
}struct_span_code_err!(
1106self.dcx(),
1107 span,
1108 E0029,
1109"only `char` and numeric types are allowed in range patterns"
1110);
1111let msg = |ty| {
1112let ty = self.deeply_resolve_ignoring_regions(ty);
1113::alloc::__export::must_use({
::alloc::fmt::format(format_args!("this is of type `{0}` but it should be `char` or numeric",
ty))
})format!("this is of type `{ty}` but it should be `char` or numeric")1114 };
1115let mut one_side_err = |first_span, first_ty, second: Option<(bool, Ty<'tcx>, Span)>| {
1116err.span_label(first_span, msg(first_ty));
1117if let Some((_, ty, sp)) = second {
1118let ty = self.deeply_resolve_ignoring_regions(ty);
1119self.endpoint_has_type(&mut err, sp, ty);
1120 }
1121 };
1122match (lhs, rhs) {
1123 (Some((true, lhs_ty, lhs_sp)), Some((true, rhs_ty, rhs_sp))) => {
1124err.span_label(lhs_sp, msg(lhs_ty));
1125err.span_label(rhs_sp, msg(rhs_ty));
1126 }
1127 (Some((true, lhs_ty, lhs_sp)), rhs) => one_side_err(lhs_sp, lhs_ty, rhs),
1128 (lhs, Some((true, rhs_ty, rhs_sp))) => one_side_err(rhs_sp, rhs_ty, lhs),
1129_ => bug_impl(Some(span), format_args!("Impossible, verified above."),
Location::caller())span_bug!(span, "Impossible, verified above."),
1130 }
1131if (lhs, rhs).references_error() {
1132err.downgrade_to_delayed_bug();
1133 }
1134if self.tcx.sess.teach(err.code.unwrap()) {
1135err.note(
1136"In a match expression, only numbers and characters can be matched \
1137 against a range. This is because the compiler checks that the range \
1138 is non-empty at compile-time, and is unable to evaluate arbitrary \
1139 comparison functions. If you want to capture values of an orderable \
1140 type between two end-points, you can use a guard.",
1141 );
1142 }
1143err.emit()
1144 }
11451146fn check_pat_ident(
1147&self,
1148 pat: &'tcx Pat<'tcx>,
1149 user_bind_annot: BindingMode,
1150 var_id: HirId,
1151 ident: Ident,
1152 sub: Option<&'tcx Pat<'tcx>>,
1153 expected: Ty<'tcx>,
1154 pat_info: PatInfo<'tcx>,
1155 ) -> Ty<'tcx> {
1156let PatInfo { binding_mode: def_br, top_info: ti, .. } = pat_info;
11571158// Determine the binding mode...
1159let bm = match user_bind_annot {
1160BindingMode(ByRef::No, Mutability::Mut) if let ByRef::Yes(_, def_br_mutbl) = def_br => {
1161// Only mention the experimental `mut_ref` feature if if we're in edition 2024 and
1162 // using other experimental matching features compatible with it.
1163if pat.span.at_least_rust_2024()
1164 && (self.tcx.features().ref_pat_eat_one_layer_2024()
1165 || self.tcx.features().ref_pat_eat_one_layer_2024_structural())
1166 {
1167if !self.tcx.features().mut_ref() {
1168feature_err(
1169self.tcx.sess,
1170 sym::mut_ref,
1171pat.span.until(ident.span),
1172"binding cannot be both mutable and by-reference",
1173 )
1174 .emit();
1175 }
11761177BindingMode(def_br, Mutability::Mut)
1178 } else {
1179// `mut` resets the binding mode on edition <= 2021
1180self.add_rust_2024_migration_desugared_pat(
1181pat_info.top_info.hir_id,
1182pat,
1183't', // last char of `mut`
1184def_br_mutbl,
1185 );
1186BindingMode(ByRef::No, Mutability::Mut)
1187 }
1188 }
1189BindingMode(ByRef::No, mutbl) => BindingMode(def_br, mutbl),
1190BindingMode(ByRef::Yes(_, user_br_mutbl), _) => {
1191if let ByRef::Yes(_, def_br_mutbl) = def_br {
1192// `ref`/`ref mut` overrides the binding mode on edition <= 2021
1193self.add_rust_2024_migration_desugared_pat(
1194pat_info.top_info.hir_id,
1195pat,
1196match user_br_mutbl {
1197 Mutability::Not => 'f', // last char of `ref`
1198Mutability::Mut => 't', // last char of `ref mut`
1199},
1200def_br_mutbl,
1201 );
1202 }
1203user_bind_annot1204 }
1205 };
12061207// If there exists a pinned reference in the pattern but the binding is not pinned,
1208 // it means the binding is unpinned and thus requires an `Unpin` bound.
1209if pat_info.max_pinnedness == PinnednessCap::Pinned1210 && #[allow(non_exhaustive_omitted_patterns)] match bm.0 {
ByRef::Yes(Pinnedness::Not, _) => true,
_ => false,
}matches!(bm.0, ByRef::Yes(Pinnedness::Not, _))1211 {
1212self.register_bound(
1213expected,
1214self.tcx.require_lang_item(LangItem::Unpin, pat.span),
1215self.misc(pat.span),
1216 )
1217 }
12181219if #[allow(non_exhaustive_omitted_patterns)] match bm.0 {
ByRef::Yes(_, Mutability::Mut) => true,
_ => false,
}matches!(bm.0, ByRef::Yes(_, Mutability::Mut))1220 && let MutblCap::WeaklyNot(and_pat_span) = pat_info.max_ref_mutbl
1221 {
1222let mut err = {
self.dcx().struct_span_err(ident.span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("cannot borrow as mutable inside an `&` pattern"))
})).with_code(E0596)
}struct_span_code_err!(
1223self.dcx(),
1224 ident.span,
1225 E0596,
1226"cannot borrow as mutable inside an `&` pattern"
1227);
12281229if let Some(span) = and_pat_span {
1230err.span_suggestion(
1231span,
1232"replace this `&` with `&mut`",
1233"&mut ",
1234 Applicability::MachineApplicable,
1235 );
1236 }
1237err.emit();
1238 }
12391240// ...and store it in a side table:
1241self.typeck_results.borrow_mut().pat_binding_modes_mut().insert(pat.hir_id, bm);
12421243{
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/pat.rs:1243",
"rustc_hir_typeck::pat", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(1243u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&["message"],
::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(&format_args!("check_pat_ident: pat.hir_id={0:?} bm={1:?}",
pat.hir_id, bm) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("check_pat_ident: pat.hir_id={:?} bm={:?}", pat.hir_id, bm);
12441245let local_ty = self.local_ty(pat.span, pat.hir_id);
1246let eq_ty = match bm.0 {
1247 ByRef::Yes(pinnedness, mutbl) => {
1248// If the binding is like `ref x | ref mut x`,
1249 // then `x` is assigned a value of type `&M T` where M is the
1250 // mutability and T is the expected type.
1251 //
1252 // Under pin ergonomics, if the binding is like `ref pin const|mut x`,
1253 // then `x` is assigned a value of type `&pin M T` where M is the
1254 // mutability and T is the expected type.
1255 //
1256 // `x` is assigned a value of type `&M T`, hence `&M T <: typeof(x)`
1257 // is required. However, we use equality, which is stronger.
1258 // See (note_1) for an explanation.
1259self.new_ref_ty(pat.span, pinnedness, mutbl, expected)
1260 }
1261// Otherwise, the type of x is the expected type `T`.
1262ByRef::No => expected, // As above, `T <: typeof(x)` is required, but we use equality, see (note_1).
1263};
12641265// We have a concrete type for the local, so we do not need to taint it and hide follow up errors *using* the local.
1266let _ = self.demand_eqtype_pat(pat.span, eq_ty, local_ty, &ti);
12671268// If there are multiple arms, make sure they all agree on
1269 // what the type of the binding `x` ought to be.
1270if var_id != pat.hir_id {
1271self.check_binding_alt_eq_ty(user_bind_annot, pat.span, var_id, local_ty, &ti);
1272 }
12731274if let Some(p) = sub {
1275self.check_pat(p, expected, pat_info);
1276 }
12771278local_ty1279 }
12801281/// When a variable is bound several times in a `PatKind::Or`, it'll resolve all of the
1282 /// subsequent bindings of the same name to the first usage. Verify that all of these
1283 /// bindings have the same type by comparing them all against the type of that first pat.
1284fn check_binding_alt_eq_ty(
1285&self,
1286 ba: BindingMode,
1287 span: Span,
1288 var_id: HirId,
1289 ty: Ty<'tcx>,
1290 ti: &TopInfo<'tcx>,
1291 ) {
1292let var_ty = self.local_ty(span, var_id);
1293if let Err(mut err) = self.demand_eqtype_pat_diag(span, var_ty, ty, ti) {
1294let var_ty = self.deeply_resolve_ignoring_regions(var_ty);
1295let msg = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("first introduced with type `{0}` here",
var_ty))
})format!("first introduced with type `{var_ty}` here");
1296err.span_label(self.tcx.hir_span(var_id), msg);
1297let in_match = self.tcx.hir_parent_iter(var_id).any(|(_, n)| {
1298#[allow(non_exhaustive_omitted_patterns)] match n {
hir::Node::Expr(hir::Expr {
kind: hir::ExprKind::Match(.., hir::MatchSource::Normal), .. }) =>
true,
_ => false,
}matches!(
1299 n,
1300 hir::Node::Expr(hir::Expr {
1301 kind: hir::ExprKind::Match(.., hir::MatchSource::Normal),
1302 ..
1303 })
1304 )1305 });
1306let pre = if in_match { "in the same arm, " } else { "" };
1307err.note(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}a binding must have the same type in all alternatives",
pre))
})format!("{pre}a binding must have the same type in all alternatives"));
1308self.suggest_adding_missing_ref_or_removing_ref(
1309&mut err,
1310span,
1311var_ty,
1312self.deeply_resolve_ignoring_regions(ty),
1313ba,
1314 );
1315err.emit();
1316 }
1317 }
13181319fn suggest_adding_missing_ref_or_removing_ref(
1320&self,
1321 err: &mut Diag<'_>,
1322 span: Span,
1323 expected: Ty<'tcx>,
1324 actual: Ty<'tcx>,
1325 ba: BindingMode,
1326 ) {
1327match (expected.kind(), actual.kind(), ba) {
1328 (ty::Ref(_, inner_ty, _), _, BindingMode::NONE)
1329if self.can_eq(self.param_env, *inner_ty, actual) =>
1330 {
1331err.span_suggestion_verbose(
1332span.shrink_to_lo(),
1333"consider adding `ref`",
1334"ref ",
1335 Applicability::MaybeIncorrect,
1336 );
1337 }
1338 (_, ty::Ref(_, inner_ty, _), BindingMode::REF)
1339if self.can_eq(self.param_env, expected, *inner_ty) =>
1340 {
1341err.span_suggestion_verbose(
1342span.with_hi(span.lo() + BytePos(4)),
1343"consider removing `ref`",
1344"",
1345 Applicability::MaybeIncorrect,
1346 );
1347 }
1348_ => (),
1349 }
1350 }
13511352/// Precondition: pat is a `Ref(_)` pattern
1353fn borrow_pat_suggestion(&self, err: &mut Diag<'_>, pat: &Pat<'_>) {
1354let tcx = self.tcx;
1355if let PatKind::Ref(inner, pinned, mutbl) = pat.kind
1356 && let PatKind::Binding(_, _, binding, ..) = inner.kind
1357 {
1358let binding_parent = tcx.parent_hir_node(pat.hir_id);
1359{
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/pat.rs:1359",
"rustc_hir_typeck::pat", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(1359u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("inner")
}> =
::tracing::__macro_support::FieldName::new("inner");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("pat")
}> =
::tracing::__macro_support::FieldName::new("pat");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("binding_parent")
}> =
::tracing::__macro_support::FieldName::new("binding_parent");
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(&inner)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&pat)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&binding_parent)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(?inner, ?pat, ?binding_parent);
13601361let pin_and_mut = pinned.prefix_str(mutbl).trim_end();
13621363let mut_var_suggestion = 'block: {
1364if mutbl.is_not() {
1365break 'block None;
1366 }
13671368let ident_kind = match binding_parent {
1369 hir::Node::Param(_) => "parameter",
1370 hir::Node::LetStmt(_) => "variable",
1371 hir::Node::Arm(_) => "binding",
13721373// Provide diagnostics only if the parent pattern is struct-like,
1374 // i.e. where `mut binding` makes sense
1375hir::Node::Pat(Pat { kind, .. }) => match kind {
1376 PatKind::Struct(..)
1377 | PatKind::TupleStruct(..)
1378 | PatKind::Or(..)
1379 | PatKind::Guard(..)
1380 | PatKind::Tuple(..)
1381 | PatKind::Slice(..) => "binding",
13821383 PatKind::Missing1384 | PatKind::Wild1385 | PatKind::Never1386 | PatKind::Binding(..)
1387 | PatKind::Deref(_)
1388 | PatKind::Ref(..)
1389 | PatKind::Expr(..)
1390 | PatKind::Range(..)
1391 | PatKind::Err(_) => break 'block None,
1392 },
13931394// Don't provide suggestions in other cases
1395_ => break 'block None,
1396 };
13971398Some((
1399pat.span,
1400::alloc::__export::must_use({
::alloc::fmt::format(format_args!("to declare a mutable {0} use",
ident_kind))
})format!("to declare a mutable {ident_kind} use"),
1401::alloc::__export::must_use({
::alloc::fmt::format(format_args!("mut {0}", binding))
})format!("mut {binding}"),
1402 ))
1403 };
14041405match binding_parent {
1406 hir::Node::Param(hir::Param { ty_span, pat, .. })
1407if pat.span != *ty_span1408 && pinned.is_pinned()
1409 && !tcx.features().pin_ergonomics() =>
1410 {
1411// FIXME(pin_ergonomics): Once `pin_ergonomics` is stabilized, remove this
1412 // gate and allow the pinned reference type-position suggestion unconditionally.
1413}
1414// Check that there is explicit type (ie this is not a closure param with inferred type)
1415 // so we don't suggest moving something to the type that does not exist
1416hir::Node::Param(hir::Param { ty_span, pat, .. }) if pat.span != *ty_span => {
1417err.multipart_suggestion(
1418::alloc::__export::must_use({
::alloc::fmt::format(format_args!("to take parameter `{0}` by reference, move `&{1}` to the type",
binding, pin_and_mut))
})format!("to take parameter `{binding}` by reference, move `&{pin_and_mut}` to the type"),
1419::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[(pat.span.until(inner.span), "".to_owned()),
(ty_span.shrink_to_lo(),
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("&{0}",
pinned.prefix_str(mutbl)))
}))]))vec![
1420 (pat.span.until(inner.span), "".to_owned()),
1421 (ty_span.shrink_to_lo(), format!("&{}", pinned.prefix_str(mutbl))),
1422 ],
1423 Applicability::MachineApplicable1424 );
14251426if let Some((sp, msg, sugg)) = mut_var_suggestion {
1427err.span_note(sp, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}: `{1}`", msg, sugg))
})format!("{msg}: `{sugg}`"));
1428 }
1429 }
1430 hir::Node::Pat(pt) if let PatKind::TupleStruct(_, pat_arr, _) = pt.kind => {
1431for i in pat_arr.iter() {
1432if let PatKind::Ref(the_ref, _, _) = i.kind
1433 && let PatKind::Binding(mt, _, ident, _) = the_ref.kind
1434 {
1435let BindingMode(_, mtblty) = mt;
1436 err.span_suggestion_verbose(
1437 i.span,
1438::alloc::__export::must_use({
::alloc::fmt::format(format_args!("consider removing `&{0}` from the pattern",
pin_and_mut))
})format!("consider removing `&{pin_and_mut}` from the pattern"),
1439 mtblty.prefix_str().to_string() + &ident.name.to_string(),
1440 Applicability::MaybeIncorrect,
1441 );
1442 }
1443 }
1444if let Some((sp, msg, sugg)) = mut_var_suggestion {
1445err.span_note(sp, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}: `{1}`", msg, sugg))
})format!("{msg}: `{sugg}`"));
1446 }
1447 }
1448 hir::Node::Param(_) | hir::Node::Arm(_) | hir::Node::Pat(_) => {
1449// rely on match ergonomics or it might be nested `&&pat`
1450err.span_suggestion_verbose(
1451pat.span.until(inner.span),
1452::alloc::__export::must_use({
::alloc::fmt::format(format_args!("consider removing `&{0}` from the pattern",
pin_and_mut))
})format!("consider removing `&{pin_and_mut}` from the pattern"),
1453"",
1454 Applicability::MaybeIncorrect,
1455 );
14561457if let Some((sp, msg, sugg)) = mut_var_suggestion {
1458err.span_note(sp, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}: `{1}`", msg, sugg))
})format!("{msg}: `{sugg}`"));
1459 }
1460 }
1461_ if let Some((sp, msg, sugg)) = mut_var_suggestion => {
1462err.span_suggestion(sp, msg, sugg, Applicability::MachineApplicable);
1463 }
1464_ => {} // don't provide suggestions in other cases #55175
1465}
1466 }
1467 }
14681469fn check_dereferenceable(
1470&self,
1471 span: Span,
1472 expected: Ty<'tcx>,
1473 inner: &Pat<'_>,
1474 ) -> Result<(), ErrorGuaranteed> {
1475if let PatKind::Binding(..) = inner.kind
1476 && let Some(pointee_ty) = self.shallow_resolve(expected).builtin_deref(true)
1477 && let ty::Dynamic(..) = pointee_ty.kind()
1478 {
1479// This is "x = dyn SomeTrait" being reduced from
1480 // "let &x = &dyn SomeTrait" or "let box x = Box<dyn SomeTrait>", an error.
1481let type_str = self.ty_to_string(expected);
1482let mut err = {
self.dcx().struct_span_err(span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("type `{0}` cannot be dereferenced",
type_str))
})).with_code(E0033)
}struct_span_code_err!(
1483self.dcx(),
1484 span,
1485 E0033,
1486"type `{}` cannot be dereferenced",
1487 type_str
1488 );
1489err.span_label(span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("type `{0}` cannot be dereferenced",
type_str))
})format!("type `{type_str}` cannot be dereferenced"));
1490if self.tcx.sess.teach(err.code.unwrap()) {
1491err.note(CANNOT_IMPLICITLY_DEREF_POINTER_TRAIT_OBJ);
1492 }
1493return Err(err.emit());
1494 }
1495Ok(())
1496 }
14971498fn resolve_pat_struct(
1499&self,
1500 pat: &'tcx Pat<'tcx>,
1501 qpath: &hir::QPath<'tcx>,
1502 ) -> Result<ResolvedPat<'tcx>, ErrorGuaranteed> {
1503// Resolve the path and check the definition for errors.
1504let (variant, pat_ty) = self.check_struct_path(qpath, pat.hir_id)?;
1505Ok(ResolvedPat { ty: pat_ty, kind: ResolvedPatKind::Struct { variant } })
1506 }
15071508/// Reject pin-projection through a type that isn't structurally pinnable.
1509 ///
1510 /// Destructuring an ADT underneath a `&pin` reference projects its fields as pinned references.
1511 /// This is only sound if the type opted into structural pinning with `#[pin_v2]`; otherwise it
1512 /// would let safe code form a `Pin<&mut Field>` for a type that should never be pinned, breaking
1513 /// the `Pin` guarantee (see #157634).
1514 ///
1515 /// This covers both explicit (`&pin mut`/`&pin const`) and implicit (match-ergonomics)
1516 /// projection. `max_pinnedness` is only set for `&pin mut`, so the implicit shared (`&pin
1517 /// const`) case is instead recognized through its pinned binding mode, hence both are checked.
1518fn check_pin_projection(
1519&self,
1520 pat: &'tcx Pat<'tcx>,
1521 pat_ty: Ty<'tcx>,
1522 pat_info: PatInfo<'tcx>,
1523 ) {
1524let through_pin = pat_info.max_pinnedness == PinnednessCap::Pinned1525 || #[allow(non_exhaustive_omitted_patterns)] match pat_info.binding_mode {
ByRef::Yes(Pinnedness::Pinned, _) => true,
_ => false,
}matches!(pat_info.binding_mode, ByRef::Yes(Pinnedness::Pinned, _));
1526if through_pin1527 && let Some(adt) = pat_ty.ty_adt_def()
1528 && !adt.is_pin_project()
1529 && !adt.is_pin()
1530 {
1531let def_span: Option<Span> = self.tcx.hir_span_if_local(adt.did());
1532let sugg_span = def_span.map(|span| span.shrink_to_lo());
1533self.dcx().emit_err(crate::diagnostics::ProjectOnNonPinProjectType {
1534 span: pat.span,
1535def_span,
1536sugg_span,
1537 });
1538 }
1539 }
15401541fn check_pat_struct(
1542&self,
1543 pat: &'tcx Pat<'tcx>,
1544 fields: &'tcx [hir::PatField<'tcx>],
1545 has_rest_pat: bool,
1546 pat_ty: Ty<'tcx>,
1547 variant: &'tcx VariantDef,
1548 expected: Ty<'tcx>,
1549 pat_info: PatInfo<'tcx>,
1550 ) -> Ty<'tcx> {
1551self.check_pin_projection(pat, pat_ty, pat_info);
15521553// Type-check the path.
1554let had_err = self.demand_eqtype_pat(pat.span, expected, pat_ty, &pat_info.top_info);
15551556// Type-check subpatterns.
1557match self.check_struct_pat_fields(pat_ty, pat, variant, fields, has_rest_pat, pat_info) {
1558Ok(()) => match had_err {
1559Ok(()) => pat_ty,
1560Err(guar) => Ty::new_error(self.tcx, guar),
1561 },
1562Err(guar) => Ty::new_error(self.tcx, guar),
1563 }
1564 }
15651566fn resolve_pat_path(
1567&self,
1568 path_id: HirId,
1569 span: Span,
1570 qpath: &'tcx hir::QPath<'_>,
1571 ) -> Result<ResolvedPat<'tcx>, ErrorGuaranteed> {
1572let tcx = self.tcx;
15731574let (res, opt_ty, segments) =
1575self.resolve_ty_and_res_fully_qualified_call(qpath, path_id, span);
1576match res {
1577 Res::Err => {
1578let e =
1579self.dcx().span_delayed_bug(qpath.span(), "`Res::Err` but no error emitted");
1580self.set_tainted_by_errors(e);
1581return Err(e);
1582 }
1583 Res::Def(DefKind::AssocFn | DefKind::Ctor(_, CtorKind::Fn) | DefKind::Variant, _) => {
1584let expected = "unit struct, unit variant or constant";
1585let e = self.report_unexpected_variant_res(
1586res,
1587None,
1588&[],
1589qpath,
1590span,
1591E0533,
1592expected,
1593 );
1594return Err(e);
1595 }
1596 Res::SelfCtor(def_id) => {
1597if let ty::Adt(adt_def, _) = *tcx.type_of(def_id).skip_binder().kind()
1598 && adt_def.is_struct()
1599 && let Some((CtorKind::Const, _)) = adt_def.non_enum_variant().ctor
1600 {
1601// Ok, we allow unit struct ctors in patterns only.
1602} else {
1603let e = self.report_unexpected_variant_res(
1604res,
1605None,
1606&[],
1607qpath,
1608span,
1609E0533,
1610"unit struct",
1611 );
1612return Err(e);
1613 }
1614 }
1615 Res::Def(
1616 DefKind::Ctor(_, CtorKind::Const)
1617 | DefKind::Const1618 | DefKind::AssocConst1619 | DefKind::ConstParam,
1620_,
1621 ) => {} // OK
1622_ => bug_impl(None, format_args!("unexpected pattern resolution: {0:?}", res),
Location::caller())bug!("unexpected pattern resolution: {:?}", res),
1623 }
16241625// Find the type of the path pattern, for later checking.
1626let (pat_ty, pat_res) =
1627self.instantiate_value_path(segments, opt_ty, res, span, span, path_id);
1628Ok(ResolvedPat { ty: pat_ty, kind: ResolvedPatKind::Path { res, pat_res, segments } })
1629 }
16301631fn check_pat_path(
1632&self,
1633 pat_id_for_diag: HirId,
1634 span: Span,
1635 resolved: &ResolvedPat<'tcx>,
1636 expected: Ty<'tcx>,
1637 ti: &TopInfo<'tcx>,
1638 ) -> Ty<'tcx> {
1639if let Err(err) =
1640self.demand_suptype_with_origin(&self.pattern_cause(ti, span), expected, resolved.ty)
1641 {
1642self.emit_bad_pat_path(err, pat_id_for_diag, span, resolved);
1643 }
1644resolved.ty
1645 }
16461647fn maybe_suggest_range_literal(
1648&self,
1649 e: &mut Diag<'_>,
1650 opt_def_id: Option<hir::def_id::DefId>,
1651 ident: Ident,
1652 ) -> bool {
1653if let Some(def_id) = opt_def_id1654 && let Some(hir::Node::Item(hir::Item {
1655 kind: hir::ItemKind::Const(_, _, _, ct_rhs),
1656 ..
1657 })) = self.tcx.hir_get_if_local(def_id)
1658 && let hir::Node::Expr(expr) = self.tcx.hir_node(ct_rhs.hir_id())
1659 && hir::is_range_literal(expr)
1660 {
1661let span = self.tcx.hir_span(ct_rhs.hir_id());
1662if let Ok(snip) = self.tcx.sess.source_map().span_to_snippet(span) {
1663e.span_suggestion_verbose(
1664ident.span,
1665"you may want to move the range into the match block",
1666snip,
1667 Applicability::MachineApplicable,
1668 );
1669return true;
1670 }
1671 }
1672false
1673}
16741675fn emit_bad_pat_path(
1676&self,
1677mut e: Diag<'_>,
1678 hir_id: HirId,
1679 pat_span: Span,
1680 resolved_pat: &ResolvedPat<'tcx>,
1681 ) {
1682let ResolvedPatKind::Path { res, pat_res, segments } = resolved_pat.kind else {
1683bug_impl(Some(pat_span),
format_args!("unexpected resolution for path pattern: {0:?}",
resolved_pat), Location::caller());span_bug!(pat_span, "unexpected resolution for path pattern: {resolved_pat:?}");
1684 };
16851686let span = match (self.tcx.hir_res_span(pat_res), res.opt_def_id()) {
1687 (Some(span), _) => span,
1688 (None, Some(def_id)) => self.tcx.def_span(def_id),
1689 (None, None) => {
1690e.emit();
1691return;
1692 }
1693 };
1694if let [hir::PathSegment { ident, args: None, .. }] = segments1695 && e.suggestions.len() == 0
1696{
1697e.span_label(span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0} defined here", res.descr()))
})format!("{} defined here", res.descr()));
1698e.span_label(
1699pat_span,
1700::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{0}` is interpreted as {1} {2}, not a new binding",
ident, res.article(), res.descr()))
})format!(
1701"`{}` is interpreted as {} {}, not a new binding",
1702 ident,
1703 res.article(),
1704 res.descr(),
1705 ),
1706 );
1707match self.tcx.parent_hir_node(hir_id) {
1708 hir::Node::PatField(..) => {
1709e.span_suggestion_verbose(
1710ident.span.shrink_to_hi(),
1711"bind the struct field to a different name instead",
1712::alloc::__export::must_use({
::alloc::fmt::format(format_args!(": other_{0}",
ident.as_str().to_lowercase()))
})format!(": other_{}", ident.as_str().to_lowercase()),
1713 Applicability::HasPlaceholders,
1714 );
1715 }
1716_ => {
1717let (type_def_id, item_def_id) = match resolved_pat.ty.kind() {
1718 ty::Adt(def, _) => match res {
1719 Res::Def(DefKind::Const, def_id) => (Some(def.did()), Some(def_id)),
1720_ => (None, None),
1721 },
1722_ => (None, None),
1723 };
17241725let is_range = #[allow(non_exhaustive_omitted_patterns)] match type_def_id.and_then(|id|
self.tcx.as_lang_item(id)) {
Some(LangItem::Range | LangItem::RangeFrom | LangItem::RangeTo |
LangItem::RangeFull | LangItem::RangeInclusiveStruct |
LangItem::RangeToInclusive) => true,
_ => false,
}matches!(
1726 type_def_id.and_then(|id| self.tcx.as_lang_item(id)),
1727Some(
1728 LangItem::Range
1729 | LangItem::RangeFrom
1730 | LangItem::RangeTo
1731 | LangItem::RangeFull
1732 | LangItem::RangeInclusiveStruct
1733 | LangItem::RangeToInclusive,
1734 )
1735 );
1736if is_range {
1737if !self.maybe_suggest_range_literal(&mut e, item_def_id, *ident) {
1738let msg = "constants only support matching by type, \
1739 if you meant to match against a range of values, \
1740 consider using a range pattern like `min ..= max` in the match block";
1741e.note(msg);
1742 }
1743 } else {
1744let msg = "introduce a new binding instead";
1745let sugg = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("other_{0}",
ident.as_str().to_lowercase()))
})format!("other_{}", ident.as_str().to_lowercase());
1746e.span_suggestion_verbose(
1747ident.span,
1748msg,
1749sugg,
1750 Applicability::HasPlaceholders,
1751 );
1752 }
1753 }
1754 };
1755 }
1756e.emit();
1757 }
17581759fn resolve_pat_tuple_struct(
1760&self,
1761 pat: &'tcx Pat<'tcx>,
1762 qpath: &'tcx hir::QPath<'tcx>,
1763 ) -> Result<ResolvedPat<'tcx>, ErrorGuaranteed> {
1764let tcx = self.tcx;
1765let report_unexpected_res = |res: Res| {
1766let expected = "tuple struct or tuple variant";
1767let sub_pats = match pat.kind {
1768 hir::PatKind::TupleStruct(_, sub_pats, _) => sub_pats,
1769_ => &[],
1770 };
1771let e = self.report_unexpected_variant_res(
1772res, None, sub_pats, qpath, pat.span, E0164, expected,
1773 );
1774Err(e)
1775 };
17761777// Resolve the path and check the definition for errors.
1778let (res, opt_ty, segments) =
1779self.resolve_ty_and_res_fully_qualified_call(qpath, pat.hir_id, pat.span);
1780if res == Res::Err {
1781let e = self.dcx().span_delayed_bug(pat.span, "`Res::Err` but no error emitted");
1782self.set_tainted_by_errors(e);
1783return Err(e);
1784 }
17851786// Type-check the path.
1787let (pat_ty, res) =
1788self.instantiate_value_path(segments, opt_ty, res, pat.span, pat.span, pat.hir_id);
1789if !pat_ty.is_fn() {
1790return report_unexpected_res(res);
1791 }
17921793let variant = match res {
1794 Res::Err => {
1795self.dcx().span_bug(pat.span, "`Res::Err` but no error emitted");
1796 }
1797 Res::Def(DefKind::AssocConst | DefKind::AssocFn, _) => {
1798return report_unexpected_res(res);
1799 }
1800 Res::Def(DefKind::Ctor(_, CtorKind::Fn), _) => tcx.expect_variant_res(res),
1801_ => bug_impl(None, format_args!("unexpected pattern resolution: {0:?}", res),
Location::caller())bug!("unexpected pattern resolution: {:?}", res),
1802 };
18031804// Replace constructor type with constructed type for tuple struct patterns.
1805let pat_ty = pat_ty.fn_sig(tcx).output();
1806let pat_ty = pat_ty.no_bound_vars().expect("expected fn type");
18071808Ok(ResolvedPat { ty: pat_ty, kind: ResolvedPatKind::TupleStruct { res, variant } })
1809 }
18101811fn check_pat_tuple_struct(
1812&self,
1813 pat: &'tcx Pat<'tcx>,
1814 qpath: &'tcx hir::QPath<'tcx>,
1815 subpats: &'tcx [Pat<'tcx>],
1816 ddpos: hir::DotDotPos,
1817 res: Res,
1818 pat_ty: Ty<'tcx>,
1819 variant: &'tcx VariantDef,
1820 expected: Ty<'tcx>,
1821 pat_info: PatInfo<'tcx>,
1822 ) -> Ty<'tcx> {
1823self.check_pin_projection(pat, pat_ty, pat_info);
18241825let tcx = self.tcx;
1826let on_error = |e| {
1827for pat in subpats {
1828self.check_pat(pat, Ty::new_error(tcx, e), pat_info);
1829 }
1830 };
18311832// Type-check the tuple struct pattern against the expected type.
1833let had_err = self.demand_eqtype_pat(pat.span, expected, pat_ty, &pat_info.top_info);
18341835// Type-check subpatterns.
1836if subpats.len() == variant.fields.len()
1837 || subpats.len() < variant.fields.len() && ddpos.as_opt_usize().is_some()
1838 {
1839let ty::Adt(_, args) = pat_ty.kind() else {
1840bug_impl(None, format_args!("unexpected pattern type {0:?}", pat_ty),
Location::caller());bug!("unexpected pattern type {:?}", pat_ty);
1841 };
1842for (i, subpat) in subpats.iter().enumerate_and_adjust(variant.fields.len(), ddpos) {
1843let field = &variant.fields[FieldIdx::from_usize(i)];
1844let field_ty = self.field_ty(subpat.span, field, args);
1845self.check_pat(subpat, field_ty, pat_info);
18461847self.tcx.check_stability(
1848 variant.fields[FieldIdx::from_usize(i)].did,
1849Some(subpat.hir_id),
1850 subpat.span,
1851None,
1852 );
1853 }
1854if let Err(e) = had_err {
1855on_error(e);
1856return Ty::new_error(tcx, e);
1857 }
1858 } else {
1859let e = self.emit_err_pat_wrong_number_of_fields(
1860pat.span,
1861res,
1862qpath,
1863subpats,
1864&variant.fields.raw,
1865expected,
1866had_err,
1867 );
1868on_error(e);
1869return Ty::new_error(tcx, e);
1870 }
1871pat_ty1872 }
18731874fn emit_err_pat_wrong_number_of_fields(
1875&self,
1876 pat_span: Span,
1877 res: Res,
1878 qpath: &hir::QPath<'_>,
1879 subpats: &'tcx [Pat<'tcx>],
1880 fields: &'tcx [ty::FieldDef],
1881 expected: Ty<'tcx>,
1882 had_err: Result<(), ErrorGuaranteed>,
1883 ) -> ErrorGuaranteed {
1884let subpats_ending = if subpats.len() == 1 { "" } else { "s" }pluralize!(subpats.len());
1885let fields_ending = if fields.len() == 1 { "" } else { "s" }pluralize!(fields.len());
18861887let subpat_spans = if subpats.is_empty() {
1888::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[pat_span]))vec![pat_span]1889 } else {
1890subpats.iter().map(|p| p.span).collect()
1891 };
1892let last_subpat_span = *subpat_spans.last().unwrap();
1893let res_span = self.tcx.def_span(res.def_id());
1894let def_ident_span = self.tcx.def_ident_span(res.def_id()).unwrap_or(res_span);
1895let field_def_spans = if fields.is_empty() {
1896::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[res_span]))vec![res_span]1897 } else {
1898fields.iter().map(|f| f.ident(self.tcx).span).collect()
1899 };
1900let last_field_def_span = *field_def_spans.last().unwrap();
19011902let mut err = {
self.dcx().struct_span_err(MultiSpan::from_spans(subpat_spans),
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("this pattern has {0} field{1}, but the corresponding {2} has {3} field{4}",
subpats.len(), subpats_ending, res.descr(), fields.len(),
fields_ending))
})).with_code(E0023)
}struct_span_code_err!(
1903self.dcx(),
1904 MultiSpan::from_spans(subpat_spans),
1905 E0023,
1906"this pattern has {} field{}, but the corresponding {} has {} field{}",
1907 subpats.len(),
1908 subpats_ending,
1909 res.descr(),
1910 fields.len(),
1911 fields_ending,
1912 );
1913err.span_label(
1914last_subpat_span,
1915::alloc::__export::must_use({
::alloc::fmt::format(format_args!("expected {0} field{1}, found {2}",
fields.len(), fields_ending, subpats.len()))
})format!("expected {} field{}, found {}", fields.len(), fields_ending, subpats.len()),
1916 );
1917if self.tcx.sess.source_map().is_multiline(qpath.span().between(last_subpat_span)) {
1918err.span_label(qpath.span(), "");
1919 }
1920if self.tcx.sess.source_map().is_multiline(def_ident_span.between(last_field_def_span)) {
1921err.span_label(def_ident_span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0} defined here", res.descr()))
})format!("{} defined here", res.descr()));
1922 }
1923for span in &field_def_spans[..field_def_spans.len() - 1] {
1924 err.span_label(*span, "");
1925 }
1926err.span_label(
1927last_field_def_span,
1928::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0} has {1} field{2}", res.descr(),
fields.len(), fields_ending))
})format!("{} has {} field{}", res.descr(), fields.len(), fields_ending),
1929 );
19301931// Identify the case `Some(x, y)` where the expected type is e.g. `Option<(T, U)>`.
1932 // More generally, the expected type wants a tuple variant with one field of an
1933 // N-arity-tuple, e.g., `V_i((p_0, .., p_N))`. Meanwhile, the user supplied a pattern
1934 // with the subpatterns directly in the tuple variant pattern, e.g., `V_i(p_0, .., p_N)`.
1935let missing_parentheses = match (expected.kind(), fields, had_err) {
1936// #67037: only do this if we could successfully type-check the expected type against
1937 // the tuple struct pattern. Otherwise the args could get out of range on e.g.,
1938 // `let P() = U;` where `P != U` with `struct Box<T>(T);`.
1939(ty::Adt(_, args), [field], Ok(())) => {
1940let field_ty = self.field_ty(pat_span, field, args);
1941match field_ty.kind() {
1942 ty::Tuple(fields) => fields.len() == subpats.len(),
1943_ => false,
1944 }
1945 }
1946_ => false,
1947 };
1948if missing_parentheses {
1949let (left, right) = match subpats {
1950// This is the zero case; we aim to get the "hi" part of the `QPath`'s
1951 // span as the "lo" and then the "hi" part of the pattern's span as the "hi".
1952 // This looks like:
1953 //
1954 // help: missing parentheses
1955 // |
1956 // L | let A(()) = A(());
1957 // | ^ ^
1958[] => (qpath.span().shrink_to_hi(), pat_span),
1959// Easy case. Just take the "lo" of the first sub-pattern and the "hi" of the
1960 // last sub-pattern. In the case of `A(x)` the first and last may coincide.
1961 // This looks like:
1962 //
1963 // help: missing parentheses
1964 // |
1965 // L | let A((x, y)) = A((1, 2));
1966 // | ^ ^
1967[first, ..] => (first.span.shrink_to_lo(), subpats.last().unwrap().span),
1968 };
1969err.multipart_suggestion(
1970"missing parentheses",
1971::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[(left, "(".to_string()), (right.shrink_to_hi(), ")".to_string())]))vec![(left, "(".to_string()), (right.shrink_to_hi(), ")".to_string())],
1972 Applicability::MachineApplicable,
1973 );
1974 } else if fields.len() > subpats.len() && pat_span != DUMMY_SP {
1975let after_fields_span = pat_span.with_hi(pat_span.hi() - BytePos(1)).shrink_to_hi();
1976let all_fields_span = match subpats {
1977 [] => after_fields_span,
1978 [field] => field.span,
1979 [first, .., last] => first.span.to(last.span),
1980 };
19811982// Check if all the fields in the pattern are wildcards.
1983let all_wildcards = subpats.iter().all(|pat| #[allow(non_exhaustive_omitted_patterns)] match pat.kind {
PatKind::Wild => true,
_ => false,
}matches!(pat.kind, PatKind::Wild));
1984let first_tail_wildcard =
1985subpats.iter().enumerate().fold(None, |acc, (pos, pat)| match (acc, &pat.kind) {
1986 (None, PatKind::Wild) => Some(pos),
1987 (Some(_), PatKind::Wild) => acc,
1988_ => None,
1989 });
1990let tail_span = match first_tail_wildcard {
1991None => after_fields_span,
1992Some(0) => subpats[0].span.to(after_fields_span),
1993Some(pos) => subpats[pos - 1].span.shrink_to_hi().to(after_fields_span),
1994 };
19951996// FIXME: heuristic-based suggestion to check current types for where to add `_`.
1997let mut wildcard_sugg = ::alloc::vec::from_elem("_", fields.len() - subpats.len())vec!["_"; fields.len() - subpats.len()].join(", ");
1998if !subpats.is_empty() {
1999wildcard_sugg = String::from(", ") + &wildcard_sugg;
2000 }
20012002err.span_suggestion_verbose(
2003after_fields_span,
2004"use `_` to explicitly ignore each field",
2005wildcard_sugg,
2006 Applicability::MaybeIncorrect,
2007 );
20082009// Only suggest `..` if more than one field is missing
2010 // or the pattern consists of all wildcards.
2011if fields.len() - subpats.len() > 1 || all_wildcards {
2012if subpats.is_empty() || all_wildcards {
2013err.span_suggestion_verbose(
2014all_fields_span,
2015"use `..` to ignore all fields",
2016"..",
2017 Applicability::MaybeIncorrect,
2018 );
2019 } else {
2020err.span_suggestion_verbose(
2021tail_span,
2022"use `..` to ignore the rest of the fields",
2023", ..",
2024 Applicability::MaybeIncorrect,
2025 );
2026 }
2027 }
2028 }
20292030err.emit()
2031 }
20322033fn check_pat_tuple(
2034&self,
2035 span: Span,
2036 elements: &'tcx [Pat<'tcx>],
2037 ddpos: hir::DotDotPos,
2038 expected: Ty<'tcx>,
2039 pat_info: PatInfo<'tcx>,
2040 ) -> Ty<'tcx> {
2041let tcx = self.tcx;
2042let mut expected_len = elements.len();
2043if ddpos.as_opt_usize().is_some() {
2044// Require known type only when `..` is present.
2045if let ty::Tuple(tys) = self.structurally_resolve_type(span, expected).kind() {
2046expected_len = tys.len();
2047 }
2048 }
2049let max_len = cmp::max(expected_len, elements.len());
20502051let element_tys_iter = (0..max_len).map(|_| self.next_ty_var(span));
2052let element_tys = tcx.mk_type_list_from_iter(element_tys_iter);
2053let pat_ty = Ty::new_tup(tcx, element_tys);
2054if let Err(reported) = self.demand_eqtype_pat(span, expected, pat_ty, &pat_info.top_info) {
2055// Walk subpatterns with an expected type of `err` in this case to silence
2056 // further errors being emitted when using the bindings. #50333
2057for (_, elem) in elements.iter().enumerate_and_adjust(max_len, ddpos) {
2058self.check_pat(elem, Ty::new_error(tcx, reported), pat_info);
2059 }
2060Ty::new_error(tcx, reported)
2061 } else {
2062for (i, elem) in elements.iter().enumerate_and_adjust(max_len, ddpos) {
2063self.check_pat(elem, element_tys[i], pat_info);
2064 }
2065pat_ty2066 }
2067 }
20682069fn check_struct_pat_fields(
2070&self,
2071 adt_ty: Ty<'tcx>,
2072 pat: &'tcx Pat<'tcx>,
2073 variant: &'tcx ty::VariantDef,
2074 fields: &'tcx [hir::PatField<'tcx>],
2075 has_rest_pat: bool,
2076 pat_info: PatInfo<'tcx>,
2077 ) -> Result<(), ErrorGuaranteed> {
2078let tcx = self.tcx;
20792080let ty::Adt(adt, args) = adt_ty.kind() else {
2081bug_impl(Some(pat.span), format_args!("struct pattern is not an ADT"),
Location::caller());span_bug!(pat.span, "struct pattern is not an ADT");
2082 };
20832084// Index the struct fields' types.
2085let field_map = variant2086 .fields
2087 .iter_enumerated()
2088 .map(|(i, field)| (field.ident(self.tcx).normalize_to_macros_2_0(), (i, field)))
2089 .collect::<FxHashMap<_, _>>();
20902091// Keep track of which fields have already appeared in the pattern.
2092let mut used_fields = FxHashMap::default();
2093let mut result = Ok(());
20942095let mut inexistent_fields = ::alloc::vec::Vec::new()vec![];
2096// Typecheck each field.
2097for field in fields {
2098let span = field.span;
2099let ident = tcx.adjust_ident(field.ident, variant.def_id);
2100let field_ty = match used_fields.entry(ident) {
2101 Occupied(occupied) => {
2102let guar = self.error_field_already_bound(span, field.ident, *occupied.get());
2103 result = Err(guar);
2104 Ty::new_error(tcx, guar)
2105 }
2106 Vacant(vacant) => {
2107 vacant.insert(span);
2108 field_map
2109 .get(&ident)
2110 .map(|(i, f)| {
2111self.write_field_index(field.hir_id, *i);
2112self.tcx.check_stability(f.did, Some(field.hir_id), span, None);
2113self.field_ty(span, f, args)
2114 })
2115 .unwrap_or_else(|| {
2116 inexistent_fields.push(field);
2117 Ty::new_misc_error(tcx)
2118 })
2119 }
2120 };
21212122self.check_pat(field.pat, field_ty, pat_info);
2123 }
21242125let mut unmentioned_fields = variant2126 .fields
2127 .iter()
2128 .map(|field| (field, field.ident(self.tcx).normalize_to_macros_2_0()))
2129 .filter(|(_, ident)| !used_fields.contains_key(ident))
2130 .collect::<Vec<_>>();
21312132let inexistent_fields_err = if !inexistent_fields.is_empty()
2133 && !inexistent_fields.iter().any(|field| field.ident.name == kw::Underscore)
2134 {
2135// we don't care to report errors for a struct if the struct itself is tainted
2136variant.has_errors()?;
2137Some(self.error_inexistent_fields(
2138adt.variant_descr(),
2139&inexistent_fields,
2140&mut unmentioned_fields,
2141pat,
2142variant,
2143args,
2144 ))
2145 } else {
2146None2147 };
21482149// Require `..` if struct has non_exhaustive attribute.
2150let non_exhaustive = variant.field_list_has_applicable_non_exhaustive();
2151if non_exhaustive && !has_rest_pat {
2152self.error_foreign_non_exhaustive_spat(pat, adt.variant_descr(), fields.is_empty());
2153 }
21542155let mut unmentioned_err = None;
2156// Report an error if an incorrect number of fields was specified.
2157if adt.is_union() {
2158if fields.len() != 1 {
2159self.dcx().emit_err(diagnostics::UnionPatMultipleFields { span: pat.span });
2160 }
2161if has_rest_pat {
2162self.dcx().emit_err(diagnostics::UnionPatDotDot { span: pat.span });
2163 }
2164 } else if !unmentioned_fields.is_empty() {
2165let accessible_unmentioned_fields: Vec<_> = unmentioned_fields2166 .iter()
2167 .copied()
2168 .filter(|(field, _)| self.is_field_suggestable(field, pat.hir_id, pat.span))
2169 .collect();
21702171if !has_rest_pat {
2172if accessible_unmentioned_fields.is_empty() {
2173unmentioned_err = Some(self.error_no_accessible_fields(pat, fields));
2174 } else {
2175unmentioned_err = Some(self.error_unmentioned_fields(
2176pat,
2177&accessible_unmentioned_fields,
2178accessible_unmentioned_fields.len() != unmentioned_fields.len(),
2179fields,
2180 ));
2181 }
2182 } else if non_exhaustive && !accessible_unmentioned_fields.is_empty() {
2183self.lint_non_exhaustive_omitted_patterns(
2184pat,
2185&accessible_unmentioned_fields,
2186adt_ty,
2187 )
2188 }
2189 }
2190match (inexistent_fields_err, unmentioned_err) {
2191 (Some(i), Some(u)) => {
2192if let Err(e) = self.error_tuple_variant_as_struct_pat(pat, fields, variant) {
2193// We don't want to show the nonexistent fields error when this was
2194 // `Foo { a, b }` when it should have been `Foo(a, b)`.
2195i.delay_as_bug();
2196u.delay_as_bug();
2197Err(e)
2198 } else {
2199i.emit();
2200Err(u.emit())
2201 }
2202 }
2203 (None, Some(u)) => {
2204if let Err(e) = self.error_tuple_variant_as_struct_pat(pat, fields, variant) {
2205u.delay_as_bug();
2206Err(e)
2207 } else {
2208Err(u.emit())
2209 }
2210 }
2211 (Some(err), None) => Err(err.emit()),
2212 (None, None) => {
2213self.error_tuple_variant_index_shorthand(variant, pat, fields)?;
2214result2215 }
2216 }
2217 }
22182219fn error_tuple_variant_index_shorthand(
2220&self,
2221 variant: &VariantDef,
2222 pat: &'_ Pat<'_>,
2223 fields: &[hir::PatField<'_>],
2224 ) -> Result<(), ErrorGuaranteed> {
2225// if this is a tuple struct, then all field names will be numbers
2226 // so if any fields in a struct pattern use shorthand syntax, they will
2227 // be invalid identifiers (for example, Foo { 0, 1 }).
2228if let (Some(CtorKind::Fn), PatKind::Struct(qpath, field_patterns, ..)) =
2229 (variant.ctor_kind(), &pat.kind)
2230 {
2231let has_shorthand_field_name = field_patterns.iter().any(|field| field.is_shorthand);
2232if has_shorthand_field_name {
2233let path = rustc_hir_pretty::qpath_to_string(self, qpath);
2234let mut err = {
self.dcx().struct_span_err(pat.span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("tuple variant `{0}` written as struct variant",
path))
})).with_code(E0769)
}struct_span_code_err!(
2235self.dcx(),
2236 pat.span,
2237 E0769,
2238"tuple variant `{path}` written as struct variant",
2239 );
2240err.span_suggestion_verbose(
2241qpath.span().shrink_to_hi().to(pat.span.shrink_to_hi()),
2242"use the tuple variant pattern syntax instead",
2243::alloc::__export::must_use({
::alloc::fmt::format(format_args!("({0})",
self.get_suggested_tuple_struct_pattern(fields, variant)))
})format!("({})", self.get_suggested_tuple_struct_pattern(fields, variant)),
2244 Applicability::MaybeIncorrect,
2245 );
2246return Err(err.emit());
2247 }
2248 }
2249Ok(())
2250 }
22512252fn error_foreign_non_exhaustive_spat(&self, pat: &Pat<'_>, descr: &str, no_fields: bool) {
2253let sess = self.tcx.sess;
2254let sm = sess.source_map();
2255let sp_brace = sm.end_point(pat.span);
2256let sp_comma = sm.end_point(pat.span.with_hi(sp_brace.hi()));
2257let sugg = if no_fields || sp_brace != sp_comma { ".. }" } else { ", .. }" };
22582259{
self.dcx().struct_span_err(pat.span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`..` required with {0} marked as non-exhaustive",
descr))
})).with_code(E0638)
}struct_span_code_err!(
2260self.dcx(),
2261 pat.span,
2262 E0638,
2263"`..` required with {descr} marked as non-exhaustive",
2264 )2265 .with_span_suggestion_verbose(
2266sp_comma,
2267"add `..` at the end of the field list to ignore all other fields",
2268sugg,
2269 Applicability::MachineApplicable,
2270 )
2271 .emit();
2272 }
22732274fn error_field_already_bound(
2275&self,
2276 span: Span,
2277 ident: Ident,
2278 other_field: Span,
2279 ) -> ErrorGuaranteed {
2280{
self.dcx().struct_span_err(span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("field `{0}` bound multiple times in the pattern",
ident))
})).with_code(E0025)
}struct_span_code_err!(
2281self.dcx(),
2282 span,
2283 E0025,
2284"field `{}` bound multiple times in the pattern",
2285 ident
2286 )2287 .with_span_label(span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("multiple uses of `{0}` in pattern",
ident))
})format!("multiple uses of `{ident}` in pattern"))
2288 .with_span_label(other_field, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("first use of `{0}`", ident))
})format!("first use of `{ident}`"))
2289 .emit()
2290 }
22912292fn error_inexistent_fields(
2293&self,
2294 kind_name: &str,
2295 inexistent_fields: &[&hir::PatField<'tcx>],
2296 unmentioned_fields: &mut Vec<(&'tcx ty::FieldDef, Ident)>,
2297 pat: &'tcx Pat<'tcx>,
2298 variant: &ty::VariantDef,
2299 args: ty::GenericArgsRef<'tcx>,
2300 ) -> Diag<'a> {
2301let tcx = self.tcx;
2302let (field_names, t, plural) = if let [field] = inexistent_fields {
2303 (::alloc::__export::must_use({
::alloc::fmt::format(format_args!("a field named `{0}`", field.ident))
})format!("a field named `{}`", field.ident), "this", "")
2304 } else {
2305 (
2306::alloc::__export::must_use({
::alloc::fmt::format(format_args!("fields named {0}",
inexistent_fields.iter().map(|field|
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{0}`", field.ident))
})).collect::<Vec<String>>().join(", ")))
})format!(
2307"fields named {}",
2308 inexistent_fields
2309 .iter()
2310 .map(|field| format!("`{}`", field.ident))
2311 .collect::<Vec<String>>()
2312 .join(", ")
2313 ),
2314"these",
2315"s",
2316 )
2317 };
2318let spans = inexistent_fields.iter().map(|field| field.ident.span).collect::<Vec<_>>();
2319let mut err = {
self.dcx().struct_span_err(spans,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0} `{1}` does not have {2}",
kind_name, tcx.def_path_str(variant.def_id), field_names))
})).with_code(E0026)
}struct_span_code_err!(
2320self.dcx(),
2321 spans,
2322 E0026,
2323"{} `{}` does not have {}",
2324 kind_name,
2325 tcx.def_path_str(variant.def_id),
2326 field_names
2327 );
2328if let Some(pat_field) = inexistent_fields.last() {
2329err.span_label(
2330pat_field.ident.span,
2331::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0} `{1}` does not have {2} field{3}",
kind_name, tcx.def_path_str(variant.def_id), t, plural))
})format!(
2332"{} `{}` does not have {} field{}",
2333 kind_name,
2334 tcx.def_path_str(variant.def_id),
2335 t,
2336 plural
2337 ),
2338 );
23392340if let [(field_def, field)] = unmentioned_fields.as_slice()
2341 && self.is_field_suggestable(field_def, pat.hir_id, pat.span)
2342 {
2343let suggested_name =
2344find_best_match_for_name(&[field.name], pat_field.ident.name, None);
2345if let Some(suggested_name) = suggested_name {
2346err.span_suggestion_verbose(
2347pat_field.ident.span,
2348"a field with a similar name exists",
2349suggested_name,
2350 Applicability::MaybeIncorrect,
2351 );
23522353// When we have a tuple struct used with struct we don't want to suggest using
2354 // the (valid) struct syntax with numeric field names. Instead we want to
2355 // suggest the expected syntax. We infer that this is the case by parsing the
2356 // `Ident` into an unsized integer. The suggestion will be emitted elsewhere in
2357 // `smart_resolve_context_dependent_help`.
2358if suggested_name.to_ident_string().parse::<usize>().is_err() {
2359// We don't want to throw `E0027` in case we have thrown `E0026` for them.
2360unmentioned_fields.retain(|&(_, x)| x.name != suggested_name);
2361 }
2362 } else if inexistent_fields.len() == 1 {
2363match pat_field.pat.kind {
2364 PatKind::Expr(_)
2365if !self.may_coerce(
2366self.typeck_results.borrow().node_type(pat_field.pat.hir_id),
2367self.field_ty(field.span, field_def, args),
2368 ) => {}
2369_ => {
2370err.span_suggestion_short(
2371pat_field.ident.span,
2372::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{0}` has a field named `{1}`",
tcx.def_path_str(variant.def_id), field.name))
})format!(
2373"`{}` has a field named `{}`",
2374 tcx.def_path_str(variant.def_id),
2375 field.name,
2376 ),
2377field.name,
2378 Applicability::MaybeIncorrect,
2379 );
2380 }
2381 }
2382 }
2383 }
2384 }
2385if tcx.sess.teach(err.code.unwrap()) {
2386err.note(
2387"This error indicates that a struct pattern attempted to \
2388 extract a nonexistent field from a struct. Struct fields \
2389 are identified by the name used before the colon : so struct \
2390 patterns should resemble the declaration of the struct type \
2391 being matched.\n\n\
2392 If you are using shorthand field patterns but want to refer \
2393 to the struct field by a different name, you should rename \
2394 it explicitly.",
2395 );
2396 }
2397err2398 }
23992400fn error_tuple_variant_as_struct_pat(
2401&self,
2402 pat: &Pat<'_>,
2403 fields: &'tcx [hir::PatField<'tcx>],
2404 variant: &ty::VariantDef,
2405 ) -> Result<(), ErrorGuaranteed> {
2406if let (Some(CtorKind::Fn), PatKind::Struct(qpath, pattern_fields, ..)) =
2407 (variant.ctor_kind(), &pat.kind)
2408 {
2409let is_tuple_struct_match = !pattern_fields.is_empty()
2410 && pattern_fields.iter().map(|field| field.ident.name.as_str()).all(is_number);
2411if is_tuple_struct_match {
2412return Ok(());
2413 }
24142415// we don't care to report errors for a struct if the struct itself is tainted
2416variant.has_errors()?;
24172418let path = rustc_hir_pretty::qpath_to_string(self, qpath);
2419let mut err = {
self.dcx().struct_span_err(pat.span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("tuple variant `{0}` written as struct variant",
path))
})).with_code(E0769)
}struct_span_code_err!(
2420self.dcx(),
2421 pat.span,
2422 E0769,
2423"tuple variant `{}` written as struct variant",
2424 path
2425 );
2426let (sugg, appl) = if fields.len() == variant.fields.len() {
2427 (
2428self.get_suggested_tuple_struct_pattern(fields, variant),
2429 Applicability::MachineApplicable,
2430 )
2431 } else {
2432 (
2433variant.fields.iter().map(|_| "_").collect::<Vec<&str>>().join(", "),
2434 Applicability::MaybeIncorrect,
2435 )
2436 };
2437err.span_suggestion_verbose(
2438qpath.span().shrink_to_hi().to(pat.span.shrink_to_hi()),
2439"use the tuple variant pattern syntax instead",
2440::alloc::__export::must_use({
::alloc::fmt::format(format_args!("({0})", sugg))
})format!("({sugg})"),
2441appl,
2442 );
2443return Err(err.emit());
2444 }
2445Ok(())
2446 }
24472448fn get_suggested_tuple_struct_pattern(
2449&self,
2450 fields: &[hir::PatField<'_>],
2451 variant: &VariantDef,
2452 ) -> String {
2453let variant_field_idents =
2454variant.fields.iter().map(|f| f.ident(self.tcx)).collect::<Vec<Ident>>();
2455fields2456 .iter()
2457 .map(|field| {
2458match self.tcx.sess.source_map().span_to_snippet(field.pat.span) {
2459Ok(f) => {
2460// Field names are numbers, but numbers
2461 // are not valid identifiers
2462if variant_field_idents.contains(&field.ident) {
2463String::from("_")
2464 } else {
2465f2466 }
2467 }
2468Err(_) => rustc_hir_pretty::pat_to_string(self, field.pat),
2469 }
2470 })
2471 .collect::<Vec<String>>()
2472 .join(", ")
2473 }
24742475/// Returns a diagnostic reporting a struct pattern which is missing an `..` due to
2476 /// inaccessible fields.
2477 ///
2478 /// ```text
2479 /// error: pattern requires `..` due to inaccessible fields
2480 /// --> src/main.rs:10:9
2481 /// |
2482 /// LL | let foo::Foo {} = foo::Foo::default();
2483 /// | ^^^^^^^^^^^
2484 /// |
2485 /// help: add a `..`
2486 /// |
2487 /// LL | let foo::Foo { .. } = foo::Foo::default();
2488 /// | ^^^^^^
2489 /// ```
2490fn error_no_accessible_fields(
2491&self,
2492 pat: &Pat<'_>,
2493 fields: &'tcx [hir::PatField<'tcx>],
2494 ) -> Diag<'a> {
2495let mut err = self2496 .dcx()
2497 .struct_span_err(pat.span, "pattern requires `..` due to inaccessible fields");
24982499if let Some(field) = fields.last() {
2500let tail_span = field.span.shrink_to_hi().to(pat.span.shrink_to_hi());
2501let comma_hi_offset =
2502self.tcx.sess.source_map().span_to_snippet(tail_span).ok().and_then(|snippet| {
2503let trimmed = snippet.trim_start();
2504trimmed.starts_with(',').then(|| (snippet.len() - trimmed.len() + 1) as u32)
2505 });
2506err.span_suggestion_verbose(
2507if let Some(comma_hi_offset) = comma_hi_offset {
2508tail_span.with_hi(tail_span.lo() + BytePos(comma_hi_offset)).shrink_to_hi()
2509 } else {
2510field.span.shrink_to_hi()
2511 },
2512"ignore the inaccessible and unused fields",
2513if comma_hi_offset.is_some() { " .." } else { ", .." },
2514 Applicability::MachineApplicable,
2515 );
2516 } else {
2517let qpath_span = if let PatKind::Struct(qpath, ..) = &pat.kind {
2518qpath.span()
2519 } else {
2520bug_impl(None,
format_args!("`error_no_accessible_fields` called on non-struct pattern"),
Location::caller());bug!("`error_no_accessible_fields` called on non-struct pattern");
2521 };
25222523// Shrink the span to exclude the `foo:Foo` in `foo::Foo { }`.
2524let span = pat.span.with_lo(qpath_span.shrink_to_hi().hi());
2525err.span_suggestion_verbose(
2526span,
2527"ignore the inaccessible and unused fields",
2528" { .. }",
2529 Applicability::MachineApplicable,
2530 );
2531 }
2532err2533 }
25342535/// Report that a pattern for a `#[non_exhaustive]` struct marked with `non_exhaustive_omitted_patterns`
2536 /// is not exhaustive enough.
2537 ///
2538 /// Nb: the partner lint for enums lives in `compiler/rustc_mir_build/src/thir/pattern/usefulness.rs`.
2539fn lint_non_exhaustive_omitted_patterns(
2540&self,
2541 pat: &Pat<'_>,
2542 unmentioned_fields: &[(&ty::FieldDef, Ident)],
2543 ty: Ty<'tcx>,
2544 ) {
2545struct FieldsNotListed<'a, 'b, 'tcx> {
2546 pat_span: Span,
2547 unmentioned_fields: &'a [(&'b ty::FieldDef, Ident)],
2548 joined_patterns: String,
2549 ty: Ty<'tcx>,
2550 }
25512552impl<'a, 'b, 'c, 'tcx> Diagnostic<'a, ()> for FieldsNotListed<'b, 'c, 'tcx> {
2553fn into_diag(self, dcx: DiagCtxtHandle<'a>, level: Level) -> Diag<'a, ()> {
2554let Self { pat_span, unmentioned_fields, joined_patterns, ty } = self;
2555Diag::new(dcx, level, "some fields are not explicitly listed")
2556 .with_span_label(pat_span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("field{0} {1} not listed",
if unmentioned_fields.len() == 1 { "" } else { "s" },
joined_patterns))
})format!("field{} {} not listed", rustc_errors::pluralize!(unmentioned_fields.len()), joined_patterns))
2557 .with_help(
2558"ensure that all fields are mentioned explicitly by adding the suggested fields",
2559 )
2560 .with_note(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("the pattern is of type `{0}` and the `non_exhaustive_omitted_patterns` attribute was found",
ty))
})format!(
2561"the pattern is of type `{ty}` and the `non_exhaustive_omitted_patterns` attribute was found",
2562 ))
2563 }
2564 }
25652566fn joined_uncovered_patterns(witnesses: &[&Ident]) -> String {
2567const LIMIT: usize = 3;
2568match witnesses {
2569 [] => {
2570{
::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
format_args!("expected an uncovered pattern, otherwise why are we emitting an error?")));
}unreachable!(
2571"expected an uncovered pattern, otherwise why are we emitting an error?"
2572)2573 }
2574 [witness] => ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{0}`", witness))
})format!("`{witness}`"),
2575 [head @ .., tail] if head.len() < LIMIT => {
2576let head: Vec<_> = head.iter().map(<_>::to_string).collect();
2577::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{0}` and `{1}`",
head.join("`, `"), tail))
})format!("`{}` and `{}`", head.join("`, `"), tail)2578 }
2579_ => {
2580let (head, tail) = witnesses.split_at(LIMIT);
2581let head: Vec<_> = head.iter().map(<_>::to_string).collect();
2582::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{0}` and {1} more",
head.join("`, `"), tail.len()))
})format!("`{}` and {} more", head.join("`, `"), tail.len())2583 }
2584 }
2585 }
2586let joined_patterns = joined_uncovered_patterns(
2587&unmentioned_fields.iter().map(|(_, i)| i).collect::<Vec<_>>(),
2588 );
25892590self.tcx.emit_node_span_lint(
2591NON_EXHAUSTIVE_OMITTED_PATTERNS,
2592pat.hir_id,
2593pat.span,
2594FieldsNotListed { pat_span: pat.span, unmentioned_fields, joined_patterns, ty },
2595 );
2596 }
25972598/// Returns a diagnostic reporting a struct pattern which does not mention some fields.
2599 ///
2600 /// ```text
2601 /// error[E0027]: pattern does not mention field `bar`
2602 /// --> src/main.rs:15:9
2603 /// |
2604 /// LL | let foo::Foo {} = foo::Foo::new();
2605 /// | ^^^^^^^^^^^ missing field `bar`
2606 /// ```
2607fn error_unmentioned_fields(
2608&self,
2609 pat: &Pat<'_>,
2610 unmentioned_fields: &[(&ty::FieldDef, Ident)],
2611 have_inaccessible_fields: bool,
2612 fields: &'tcx [hir::PatField<'tcx>],
2613 ) -> Diag<'a> {
2614let inaccessible = if have_inaccessible_fields { " and inaccessible fields" } else { "" };
2615let field_names = if let [(_, field)] = unmentioned_fields {
2616::alloc::__export::must_use({
::alloc::fmt::format(format_args!("field `{0}`{1}", field,
inaccessible))
})format!("field `{field}`{inaccessible}")2617 } else {
2618let fields = unmentioned_fields2619 .iter()
2620 .map(|(_, name)| ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{0}`", name))
})format!("`{name}`"))
2621 .collect::<Vec<String>>()
2622 .join(", ");
2623::alloc::__export::must_use({
::alloc::fmt::format(format_args!("fields {0}{1}", fields,
inaccessible))
})format!("fields {fields}{inaccessible}")2624 };
2625let mut err = {
self.dcx().struct_span_err(pat.span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("pattern does not mention {0}",
field_names))
})).with_code(E0027)
}struct_span_code_err!(
2626self.dcx(),
2627 pat.span,
2628 E0027,
2629"pattern does not mention {}",
2630 field_names
2631 );
2632err.span_label(pat.span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("missing {0}", field_names))
})format!("missing {field_names}"));
2633let len = unmentioned_fields.len();
2634let (prefix, postfix, sp) = match fields {
2635 [] => match &pat.kind {
2636 PatKind::Struct(path, [], None) => {
2637 (" { ", " }", path.span().shrink_to_hi().until(pat.span.shrink_to_hi()))
2638 }
2639_ => return err,
2640 },
2641 [.., field] => {
2642// Account for last field having a trailing comma or parse recovery at the tail of
2643 // the pattern to avoid invalid suggestion (#78511).
2644let tail = field.span.shrink_to_hi().with_hi(pat.span.hi());
2645match &pat.kind {
2646 PatKind::Struct(..) => (", ", " }", tail),
2647_ => return err,
2648 }
2649 }
2650 };
2651err.span_suggestion(
2652sp,
2653::alloc::__export::must_use({
::alloc::fmt::format(format_args!("include the missing field{0} in the pattern{1}",
if len == 1 { "" } else { "s" },
if have_inaccessible_fields {
" and ignore the inaccessible fields"
} else { "" }))
})format!(
2654"include the missing field{} in the pattern{}",
2655pluralize!(len),
2656if have_inaccessible_fields { " and ignore the inaccessible fields" } else { "" }
2657 ),
2658::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}{1}{2}{3}", prefix,
unmentioned_fields.iter().map(|(_, name)|
{
let field_name = name.to_string();
if is_number(&field_name) {
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}: _", field_name))
})
} else { field_name }
}).collect::<Vec<_>>().join(", "),
if have_inaccessible_fields { ", .." } else { "" }, postfix))
})format!(
2659"{}{}{}{}",
2660 prefix,
2661 unmentioned_fields
2662 .iter()
2663 .map(|(_, name)| {
2664let field_name = name.to_string();
2665if is_number(&field_name) { format!("{field_name}: _") } else { field_name }
2666 })
2667 .collect::<Vec<_>>()
2668 .join(", "),
2669if have_inaccessible_fields { ", .." } else { "" },
2670 postfix,
2671 ),
2672 Applicability::MachineApplicable,
2673 );
2674err.span_suggestion(
2675sp,
2676::alloc::__export::must_use({
::alloc::fmt::format(format_args!("if you don\'t care about {0} missing field{1}, you can explicitly ignore {2}",
if len == 1 { "this" } else { "these" },
if len == 1 { "" } else { "s" },
if len == 1 { "it" } else { "them" }))
})format!(
2677"if you don't care about {these} missing field{s}, you can explicitly ignore {them}",
2678 these = pluralize!("this", len),
2679 s = pluralize!(len),
2680 them = if len == 1 { "it" } else { "them" },
2681 ),
2682::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}{1}{2}{3}", prefix,
unmentioned_fields.iter().map(|(_, name)|
{
let field_name = name.to_string();
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}: _", field_name))
})
}).collect::<Vec<_>>().join(", "),
if have_inaccessible_fields { ", .." } else { "" }, postfix))
})format!(
2683"{}{}{}{}",
2684 prefix,
2685 unmentioned_fields
2686 .iter()
2687 .map(|(_, name)| {
2688let field_name = name.to_string();
2689format!("{field_name}: _")
2690 })
2691 .collect::<Vec<_>>()
2692 .join(", "),
2693if have_inaccessible_fields { ", .." } else { "" },
2694 postfix,
2695 ),
2696 Applicability::MachineApplicable,
2697 );
2698err.span_suggestion(
2699sp,
2700"or always ignore missing fields here",
2701::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}..{1}", prefix, postfix))
})format!("{prefix}..{postfix}"),
2702 Applicability::MachineApplicable,
2703 );
2704err2705 }
27062707fn check_pat_deref(
2708&self,
2709 span: Span,
2710 inner: &'tcx Pat<'tcx>,
2711 expected: Ty<'tcx>,
2712 pat_info: PatInfo<'tcx>,
2713 ) -> Ty<'tcx> {
2714let target_ty = self.deref_pat_target(span, expected);
2715self.check_pat(inner, target_ty, pat_info);
2716self.register_deref_mut_bounds_if_needed(span, inner, [expected]);
2717expected2718 }
27192720fn deref_pat_target(&self, span: Span, source_ty: Ty<'tcx>) -> Ty<'tcx> {
2721// Register a `DerefPure` bound, which is required by all `deref!()` pats.
2722let tcx = self.tcx;
2723self.register_bound(
2724source_ty,
2725tcx.require_lang_item(LangItem::DerefPure, span),
2726self.misc(span),
2727 );
2728// The expected type for the deref pat's inner pattern is `<expected as Deref>::Target`.
2729let target_ty = Ty::new_projection(
2730tcx,
2731 ty::IsRigid::No,
2732tcx.require_lang_item(LangItem::DerefTarget, span),
2733 [source_ty],
2734 );
2735let target_ty = self.normalize(span, Unnormalized::new_wip(target_ty));
2736self.deeply_resolve_ignoring_regions_with_obligations(target_ty)
2737 }
27382739/// Check if the interior of a deref pattern (either explicit or implicit) has any `ref mut`
2740 /// bindings, which would require `DerefMut` to be emitted in MIR building instead of just
2741 /// `Deref`. We do this *after* checking the inner pattern, since we want to make sure to
2742 /// account for `ref mut` binding modes inherited from implicitly dereferencing `&mut` refs.
2743fn register_deref_mut_bounds_if_needed(
2744&self,
2745 span: Span,
2746 inner: &'tcx Pat<'tcx>,
2747 derefed_tys: impl IntoIterator<Item = Ty<'tcx>>,
2748 ) {
2749if self.typeck_results.borrow().pat_has_ref_mut_binding(inner) {
2750for mutably_derefed_ty in derefed_tys {
2751self.register_bound(
2752 mutably_derefed_ty,
2753self.tcx.require_lang_item(LangItem::DerefMut, span),
2754self.misc(span),
2755 );
2756 }
2757 }
2758 }
27592760// Precondition: Pat is Ref(inner)
2761fn check_pat_ref(
2762&self,
2763 pat: &'tcx Pat<'tcx>,
2764 inner: &'tcx Pat<'tcx>,
2765 pat_pinned: Pinnedness,
2766 pat_mutbl: Mutability,
2767mut expected: Ty<'tcx>,
2768mut pat_info: PatInfo<'tcx>,
2769 ) -> Ty<'tcx> {
2770let tcx = self.tcx;
27712772let pat_prefix_span =
2773inner.span.find_ancestor_inside(pat.span).map(|end| pat.span.until(end));
27742775let ref_pat_matches_mut_ref = self.ref_pat_matches_mut_ref();
2776if ref_pat_matches_mut_ref && pat_mutbl == Mutability::Not {
2777// If `&` patterns can match against mutable reference types (RFC 3627, Rule 5), we need
2778 // to prevent subpatterns from binding with `ref mut`. Subpatterns of a shared reference
2779 // pattern should have read-only access to the scrutinee, and the borrow checker won't
2780 // catch it in this case.
2781pat_info.max_ref_mutbl = pat_info.max_ref_mutbl.cap_to_weakly_not(pat_prefix_span);
2782 }
27832784expected = self.deeply_resolve_ignoring_regions_with_obligations(expected);
2785// Determine whether we're consuming an inherited reference and resetting the default
2786 // binding mode, based on edition and enabled experimental features.
2787if let ByRef::Yes(inh_pin, inh_mut) = pat_info.binding_mode
2788 && pat_pinned == inh_pin2789 {
2790match self.ref_pat_matches_inherited_ref(pat.span.edition()) {
2791 InheritedRefMatchRule::EatOuter => {
2792// ref pattern attempts to consume inherited reference
2793if pat_mutbl > inh_mut {
2794// Tried to match inherited `ref` with `&mut`
2795 // NB: This assumes that `&` patterns can match against mutable references
2796 // (RFC 3627, Rule 5). If we implement a pattern typing ruleset with Rule 4E
2797 // but not Rule 5, we'll need to check that here.
2798if true {
if !ref_pat_matches_mut_ref {
::core::panicking::panic("assertion failed: ref_pat_matches_mut_ref")
};
};debug_assert!(ref_pat_matches_mut_ref);
2799self.error_inherited_ref_mutability_mismatch(pat, pat_prefix_span);
2800 }
28012802pat_info.binding_mode = ByRef::No;
2803self.typeck_results.borrow_mut().skipped_ref_pats_mut().insert(pat.hir_id);
2804self.check_pat(inner, expected, pat_info);
2805return expected;
2806 }
2807 InheritedRefMatchRule::EatInner => {
2808if let ty::Ref(_, _, r_mutbl) = *expected.kind()
2809 && pat_mutbl <= r_mutbl2810 {
2811// Match against the reference type; don't consume the inherited ref.
2812 // NB: The check for compatible pattern and ref type mutability assumes that
2813 // `&` patterns can match against mutable references (RFC 3627, Rule 5). If
2814 // we implement a pattern typing ruleset with Rule 4 (including the fallback
2815 // to matching the inherited ref when the inner ref can't match) but not
2816 // Rule 5, we'll need to check that here.
2817if true {
if !ref_pat_matches_mut_ref {
::core::panicking::panic("assertion failed: ref_pat_matches_mut_ref")
};
};debug_assert!(ref_pat_matches_mut_ref);
2818// NB: For RFC 3627's Rule 3, we limit the default binding mode's ref
2819 // mutability to `pat_info.max_ref_mutbl`. If we implement a pattern typing
2820 // ruleset with Rule 4 but not Rule 3, we'll need to check that here.
2821if true {
if !self.downgrade_mut_inside_shared() {
::core::panicking::panic("assertion failed: self.downgrade_mut_inside_shared()")
};
};debug_assert!(self.downgrade_mut_inside_shared());
2822let mutbl_cap = cmp::min(r_mutbl, pat_info.max_ref_mutbl.as_mutbl());
2823pat_info.binding_mode = pat_info.binding_mode.cap_ref_mutability(mutbl_cap);
2824 } else {
2825// The reference pattern can't match against the expected type, so try
2826 // matching against the inherited ref instead.
2827if pat_mutbl > inh_mut {
2828// We can't match an inherited shared reference with `&mut`.
2829 // NB: This assumes that `&` patterns can match against mutable
2830 // references (RFC 3627, Rule 5). If we implement a pattern typing
2831 // ruleset with Rule 4 but not Rule 5, we'll need to check that here.
2832 // FIXME(ref_pat_eat_one_layer_2024_structural): If we already tried
2833 // matching the real reference, the error message should explain that
2834 // falling back to the inherited reference didn't work. This should be
2835 // the same error as the old-Edition version below.
2836if true {
if !ref_pat_matches_mut_ref {
::core::panicking::panic("assertion failed: ref_pat_matches_mut_ref")
};
};debug_assert!(ref_pat_matches_mut_ref);
2837self.error_inherited_ref_mutability_mismatch(pat, pat_prefix_span);
2838 }
28392840pat_info.binding_mode = ByRef::No;
2841self.typeck_results.borrow_mut().skipped_ref_pats_mut().insert(pat.hir_id);
2842self.check_pat(inner, expected, pat_info);
2843return expected;
2844 }
2845 }
2846 InheritedRefMatchRule::EatBoth { consider_inherited_ref: true } => {
2847// Reset binding mode on old editions
2848pat_info.binding_mode = ByRef::No;
28492850if let ty::Ref(_, inner_ty, _) = *expected.kind() {
2851// Consume both the inherited and inner references.
2852if pat_mutbl.is_mut() && inh_mut.is_mut() {
2853// As a special case, a `&mut` reference pattern will be able to match
2854 // against a reference type of any mutability if the inherited ref is
2855 // mutable. Since this allows us to match against a shared reference
2856 // type, we refer to this as "falling back" to matching the inherited
2857 // reference, though we consume the real reference as well. We handle
2858 // this here to avoid adding this case to the common logic below.
2859self.check_pat(inner, inner_ty, pat_info);
2860return expected;
2861 } else {
2862// Otherwise, use the common logic below for matching the inner
2863 // reference type.
2864 // FIXME(ref_pat_eat_one_layer_2024_structural): If this results in a
2865 // mutability mismatch, the error message should explain that falling
2866 // back to the inherited reference didn't work. This should be the same
2867 // error as the Edition 2024 version above.
2868}
2869 } else {
2870// The expected type isn't a reference type, so only match against the
2871 // inherited reference.
2872if pat_mutbl > inh_mut {
2873// We can't match a lone inherited shared reference with `&mut`.
2874self.error_inherited_ref_mutability_mismatch(pat, pat_prefix_span);
2875 }
28762877self.typeck_results.borrow_mut().skipped_ref_pats_mut().insert(pat.hir_id);
2878self.check_pat(inner, expected, pat_info);
2879return expected;
2880 }
2881 }
2882 InheritedRefMatchRule::EatBoth { consider_inherited_ref: false } => {
2883// Reset binding mode on stable Rust. This will be a type error below if
2884 // `expected` is not a reference type.
2885pat_info.binding_mode = ByRef::No;
2886self.add_rust_2024_migration_desugared_pat(
2887pat_info.top_info.hir_id,
2888pat,
2889match pat_mutbl {
2890 Mutability::Not => '&', // last char of `&`
2891Mutability::Mut => 't', // last char of `&mut`
2892},
2893inh_mut,
2894 )
2895 }
2896 }
2897 }
28982899let (ref_ty, inner_ty) = match self.check_dereferenceable(pat.span, expected, inner) {
2900Ok(()) => {
2901// `demand::subtype` would be good enough, but using `eqtype` turns
2902 // out to be equally general. See (note_1) for details.
29032904 // Take region, inner-type from expected type if we can,
2905 // to avoid creating needless variables. This also helps with
2906 // the bad interactions of the given hack detailed in (note_1).
2907{
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/pat.rs:2907",
"rustc_hir_typeck::pat", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(2907u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&["message"],
::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(&format_args!("check_pat_ref: expected={0:?}",
expected) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("check_pat_ref: expected={:?}", expected);
2908match expected.maybe_pinned_ref() {
2909Some((r_ty, r_pinned, r_mutbl, _))
2910if ((ref_pat_matches_mut_ref && r_mutbl >= pat_mutbl)
2911 || r_mutbl == pat_mutbl)
2912 && pat_pinned == r_pinned =>
2913 {
2914if r_mutbl == Mutability::Not {
2915pat_info.max_ref_mutbl = MutblCap::Not;
2916 }
2917if r_pinned == Pinnedness::Pinned {
2918pat_info.max_pinnedness = PinnednessCap::Pinned;
2919 }
29202921 (expected, r_ty)
2922 }
2923_ => {
2924let inner_ty = self.next_ty_var(inner.span);
2925let ref_ty = self.new_ref_ty(pat.span, pat_pinned, pat_mutbl, inner_ty);
2926{
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/pat.rs:2926",
"rustc_hir_typeck::pat", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(2926u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&["message"],
::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(&format_args!("check_pat_ref: demanding {0:?} = {1:?}",
expected, ref_ty) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("check_pat_ref: demanding {:?} = {:?}", expected, ref_ty);
2927let err = self.demand_eqtype_pat_diag(
2928pat.span,
2929expected,
2930ref_ty,
2931&pat_info.top_info,
2932 );
29332934// Look for a case like `fn foo(&foo: u32)` and suggest
2935 // `fn foo(foo: &u32)`
2936if let Err(mut err) = err {
2937self.borrow_pat_suggestion(&mut err, pat);
2938err.emit();
2939 }
2940 (ref_ty, inner_ty)
2941 }
2942 }
2943 }
2944Err(guar) => {
2945let err = Ty::new_error(tcx, guar);
2946 (err, err)
2947 }
2948 };
29492950self.check_pat(inner, inner_ty, pat_info);
2951ref_ty2952 }
29532954/// Create a reference or pinned reference type with a fresh region variable.
2955fn new_ref_ty(
2956&self,
2957 span: Span,
2958 pinnedness: Pinnedness,
2959 mutbl: Mutability,
2960 ty: Ty<'tcx>,
2961 ) -> Ty<'tcx> {
2962let region = self.next_region_var(RegionVariableOrigin::PatternRegion(span));
2963let ref_ty = Ty::new_ref(self.tcx, region, ty, mutbl);
2964if pinnedness.is_pinned() {
2965return self.new_pinned_ty(span, ref_ty);
2966 }
2967ref_ty2968 }
29692970/// Create a pinned type.
2971fn new_pinned_ty(&self, span: Span, ty: Ty<'tcx>) -> Ty<'tcx> {
2972Ty::new_adt(
2973self.tcx,
2974self.tcx.adt_def(self.tcx.require_lang_item(LangItem::Pin, span)),
2975self.tcx.mk_args(&[ty.into()]),
2976 )
2977 }
29782979fn error_inherited_ref_mutability_mismatch(
2980&self,
2981 pat: &'tcx Pat<'tcx>,
2982 pat_prefix_span: Option<Span>,
2983 ) -> ErrorGuaranteed {
2984let err_msg = "mismatched types";
2985let err = if let Some(span) = pat_prefix_span {
2986let mut err = self.dcx().struct_span_err(span, err_msg);
2987err.code(E0308);
2988err.note("cannot match inherited `&` with `&mut` pattern");
2989err.span_suggestion_verbose(
2990span,
2991"replace this `&mut` pattern with `&`",
2992"&",
2993 Applicability::MachineApplicable,
2994 );
2995err2996 } else {
2997self.dcx().struct_span_err(pat.span, err_msg)
2998 };
2999err.emit()
3000 }
30013002fn try_resolve_slice_ty_to_array_ty(
3003&self,
3004 before: &'tcx [Pat<'tcx>],
3005 slice: Option<&'tcx Pat<'tcx>>,
3006 span: Span,
3007 ) -> Option<Ty<'tcx>> {
3008if slice.is_some() {
3009return None;
3010 }
30113012let tcx = self.tcx;
3013let len = before.len();
3014let inner_ty = self.next_ty_var(span);
30153016Some(Ty::new_array(tcx, inner_ty, len.try_into().unwrap()))
3017 }
30183019/// Used to determines whether we can infer the expected type in the slice pattern to be of type array.
3020 /// This is only possible if we're in an irrefutable pattern. If we were to allow this in refutable
3021 /// patterns we wouldn't e.g. report ambiguity in the following situation:
3022 ///
3023 /// ```ignore(rust)
3024 /// struct Zeroes;
3025 /// const ARR: [usize; 2] = [0; 2];
3026 /// const ARR2: [usize; 2] = [2; 2];
3027 ///
3028 /// impl Into<&'static [usize; 2]> for Zeroes {
3029 /// fn into(self) -> &'static [usize; 2] {
3030 /// &ARR
3031 /// }
3032 /// }
3033 ///
3034 /// impl Into<&'static [usize]> for Zeroes {
3035 /// fn into(self) -> &'static [usize] {
3036 /// &ARR2
3037 /// }
3038 /// }
3039 ///
3040 /// fn main() {
3041 /// let &[a, b]: &[usize] = Zeroes.into() else {
3042 /// ..
3043 /// };
3044 /// }
3045 /// ```
3046 ///
3047 /// If we're in an irrefutable pattern we prefer the array impl candidate given that
3048 /// the slice impl candidate would be rejected anyway (if no ambiguity existed).
3049fn pat_is_irrefutable(&self, decl_origin: Option<DeclOrigin<'_>>) -> bool {
3050match decl_origin {
3051Some(DeclOrigin::LocalDecl { els: None }) => true,
3052Some(DeclOrigin::LocalDecl { els: Some(_) } | DeclOrigin::LetExpr) | None => false,
3053 }
3054 }
30553056/// Type check a slice pattern.
3057 ///
3058 /// Syntactically, these look like `[pat_0, ..., pat_n]`.
3059 /// Semantically, we are type checking a pattern with structure:
3060 /// ```ignore (not-rust)
3061 /// [before_0, ..., before_n, (slice, after_0, ... after_n)?]
3062 /// ```
3063 /// The type of `slice`, if it is present, depends on the `expected` type.
3064 /// If `slice` is missing, then so is `after_i`.
3065 /// If `slice` is present, it can still represent 0 elements.
3066fn check_pat_slice(
3067&self,
3068 span: Span,
3069 before: &'tcx [Pat<'tcx>],
3070 slice: Option<&'tcx Pat<'tcx>>,
3071 after: &'tcx [Pat<'tcx>],
3072 expected: Ty<'tcx>,
3073 pat_info: PatInfo<'tcx>,
3074 ) -> Ty<'tcx> {
3075let expected = self.deeply_resolve_ignoring_regions_with_obligations(expected);
30763077// If the pattern is irrefutable and `expected` is an infer ty, we try to equate it
3078 // to an array if the given pattern allows it. See issue #76342
3079if self.pat_is_irrefutable(pat_info.decl_origin) && expected.is_ty_var() {
3080if let Some(resolved_arr_ty) =
3081self.try_resolve_slice_ty_to_array_ty(before, slice, span)
3082 {
3083{
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/pat.rs:3083",
"rustc_hir_typeck::pat", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(3083u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("resolved_arr_ty")
}> =
::tracing::__macro_support::FieldName::new("resolved_arr_ty");
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(&resolved_arr_ty)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(?resolved_arr_ty);
3084let _ = self.demand_eqtype(span, expected, resolved_arr_ty);
3085 }
3086 }
30873088let expected = self.structurally_resolve_type(span, expected);
3089{
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/pat.rs:3089",
"rustc_hir_typeck::pat", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_hir_typeck/src/pat.rs"),
::tracing_core::__macro_support::Option::Some(3089u32),
::tracing_core::__macro_support::Option::Some("rustc_hir_typeck::pat"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("expected")
}> =
::tracing::__macro_support::FieldName::new("expected");
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(&expected)
as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(?expected);
30903091let (element_ty, opt_slice_ty, inferred) = match *expected.kind() {
3092// An array, so we might have something like `let [a, b, c] = [0, 1, 2];`.
3093ty::Array(element_ty, len) => {
3094let min = before.len() as u64 + after.len() as u64;
3095let (opt_slice_ty, expected) =
3096self.check_array_pat_len(span, element_ty, expected, slice, len, min);
3097// `opt_slice_ty.is_none()` => `slice.is_none()`.
3098 // Note, though, that opt_slice_ty could be `Some(error_ty)`.
3099if !(opt_slice_ty.is_some() || slice.is_none()) {
::core::panicking::panic("assertion failed: opt_slice_ty.is_some() || slice.is_none()")
};assert!(opt_slice_ty.is_some() || slice.is_none());
3100 (element_ty, opt_slice_ty, expected)
3101 }
3102 ty::Slice(element_ty) => (element_ty, Some(expected), expected),
3103// The expected type must be an array or slice, but was neither, so error.
3104_ => {
3105let guar = expected.error_reported().err().unwrap_or_else(|| {
3106self.error_expected_array_or_slice(span, expected, pat_info)
3107 });
3108let err = Ty::new_error(self.tcx, guar);
3109 (err, Some(err), err)
3110 }
3111 };
31123113// Type check all the patterns before `slice`.
3114for elt in before {
3115self.check_pat(elt, element_ty, pat_info);
3116 }
3117// Type check the `slice`, if present, against its expected type.
3118if let Some(slice) = slice {
3119self.check_pat(slice, opt_slice_ty.unwrap(), pat_info);
3120 }
3121// Type check the elements after `slice`, if present.
3122for elt in after {
3123self.check_pat(elt, element_ty, pat_info);
3124 }
3125inferred3126 }
31273128/// Type check the length of an array pattern.
3129 ///
3130 /// Returns both the type of the variable length pattern (or `None`), and the potentially
3131 /// inferred array type. We only return `None` for the slice type if `slice.is_none()`.
3132fn check_array_pat_len(
3133&self,
3134 span: Span,
3135 element_ty: Ty<'tcx>,
3136 arr_ty: Ty<'tcx>,
3137 slice: Option<&'tcx Pat<'tcx>>,
3138 len: ty::Const<'tcx>,
3139 min_len: u64,
3140 ) -> (Option<Ty<'tcx>>, Ty<'tcx>) {
3141let len = self.try_structurally_resolve_const(span, len).try_to_target_usize(self.tcx);
31423143let guar = if let Some(len) = len {
3144// Now we know the length...
3145if slice.is_none() {
3146// ...and since there is no variable-length pattern,
3147 // we require an exact match between the number of elements
3148 // in the array pattern and as provided by the matched type.
3149if min_len == len {
3150return (None, arr_ty);
3151 }
31523153self.error_scrutinee_inconsistent_length(span, min_len, len)
3154 } else if let Some(pat_len) = len.checked_sub(min_len) {
3155// The variable-length pattern was there,
3156 // so it has an array type with the remaining elements left as its size...
3157return (Some(Ty::new_array(self.tcx, element_ty, pat_len)), arr_ty);
3158 } else {
3159// ...however, in this case, there were no remaining elements.
3160 // That is, the slice pattern requires more than the array type offers.
3161self.error_scrutinee_with_rest_inconsistent_length(span, min_len, len)
3162 }
3163 } else if slice.is_none() {
3164// We have a pattern with a fixed length,
3165 // which we can use to infer the length of the array.
3166let updated_arr_ty = Ty::new_array(self.tcx, element_ty, min_len);
3167self.demand_eqtype(span, updated_arr_ty, arr_ty);
3168return (None, updated_arr_ty);
3169 } else {
3170// We have a variable-length pattern and don't know the array length.
3171 // This happens if we have e.g.,
3172 // `let [a, b, ..] = arr` where `arr: [T; N]` where `const N: usize`.
3173self.error_scrutinee_unfixed_length(span)
3174 };
31753176// If we get here, we must have emitted an error.
3177(Some(Ty::new_error(self.tcx, guar)), arr_ty)
3178 }
31793180fn error_scrutinee_inconsistent_length(
3181&self,
3182 span: Span,
3183 min_len: u64,
3184 size: u64,
3185 ) -> ErrorGuaranteed {
3186{
self.dcx().struct_span_err(span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("pattern requires {0} element{1} but array has {2}",
min_len, if min_len == 1 { "" } else { "s" }, size))
})).with_code(E0527)
}struct_span_code_err!(
3187self.dcx(),
3188 span,
3189 E0527,
3190"pattern requires {} element{} but array has {}",
3191 min_len,
3192pluralize!(min_len),
3193 size,
3194 )3195 .with_span_label(span, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("expected {0} element{1}", size,
if size == 1 { "" } else { "s" }))
})format!("expected {} element{}", size, pluralize!(size)))
3196 .emit()
3197 }
31983199fn error_scrutinee_with_rest_inconsistent_length(
3200&self,
3201 span: Span,
3202 min_len: u64,
3203 size: u64,
3204 ) -> ErrorGuaranteed {
3205{
self.dcx().struct_span_err(span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("pattern requires at least {0} element{1} but array has {2}",
min_len, if min_len == 1 { "" } else { "s" }, size))
})).with_code(E0528)
}struct_span_code_err!(
3206self.dcx(),
3207 span,
3208 E0528,
3209"pattern requires at least {} element{} but array has {}",
3210 min_len,
3211pluralize!(min_len),
3212 size,
3213 )3214 .with_span_label(
3215span,
3216::alloc::__export::must_use({
::alloc::fmt::format(format_args!("pattern cannot match array of {0} element{1}",
size, if size == 1 { "" } else { "s" }))
})format!("pattern cannot match array of {} element{}", size, pluralize!(size),),
3217 )
3218 .emit()
3219 }
32203221fn error_scrutinee_unfixed_length(&self, span: Span) -> ErrorGuaranteed {
3222{
self.dcx().struct_span_err(span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("cannot pattern-match on an array without a fixed length"))
})).with_code(E0730)
}struct_span_code_err!(
3223self.dcx(),
3224 span,
3225 E0730,
3226"cannot pattern-match on an array without a fixed length",
3227 )3228 .emit()
3229 }
32303231fn error_expected_array_or_slice(
3232&self,
3233 span: Span,
3234 expected_ty: Ty<'tcx>,
3235 pat_info: PatInfo<'tcx>,
3236 ) -> ErrorGuaranteed {
3237let PatInfo { top_info: ti, current_depth, .. } = pat_info;
32383239let mut slice_pat_semantics = false;
3240let mut as_deref = None;
3241let mut slicing = None;
3242if let ty::Ref(_, ty, _) = expected_ty.kind()
3243 && let ty::Array(..) | ty::Slice(..) = ty.kind()
3244 {
3245slice_pat_semantics = true;
3246 } else if self3247 .autoderef(span, expected_ty)
3248 .silence_errors()
3249 .any(|(ty, _)| #[allow(non_exhaustive_omitted_patterns)] match ty.kind() {
ty::Slice(..) | ty::Array(..) => true,
_ => false,
}matches!(ty.kind(), ty::Slice(..) | ty::Array(..)))
3250 && let Some(span) = ti.span
3251 && let Some(_) = ti.origin_expr
3252 {
3253let resolved_ty = self.deeply_resolve_ignoring_regions(ti.expected);
3254let (is_slice_or_array_or_vector, resolved_ty) =
3255self.is_slice_or_array_or_vector(resolved_ty);
3256match resolved_ty.kind() {
3257 ty::Adt(adt_def, _)
3258if self.tcx.is_diagnostic_item(sym::Option, adt_def.did())
3259 || self.tcx.is_diagnostic_item(sym::Result, adt_def.did()) =>
3260 {
3261// Slicing won't work here, but `.as_deref()` might (issue #91328).
3262as_deref = Some(diagnostics::AsDerefSuggestion { span: span.shrink_to_hi() });
3263 }
3264_ => (),
3265 }
32663267let is_top_level = current_depth <= 1;
3268if is_slice_or_array_or_vector && is_top_level {
3269slicing = Some(diagnostics::SlicingSuggestion { span: span.shrink_to_hi() });
3270 }
3271 }
3272self.dcx().emit_err(diagnostics::ExpectedArrayOrSlice {
3273span,
3274 ty: expected_ty,
3275slice_pat_semantics,
3276as_deref,
3277slicing,
3278 })
3279 }
32803281fn is_slice_or_array_or_vector(&self, ty: Ty<'tcx>) -> (bool, Ty<'tcx>) {
3282match ty.kind() {
3283 ty::Adt(adt_def, _) if self.tcx.is_diagnostic_item(sym::Vec, adt_def.did()) => {
3284 (true, ty)
3285 }
3286 ty::Ref(_, ty, _) => self.is_slice_or_array_or_vector(*ty),
3287 ty::Slice(..) | ty::Array(..) => (true, ty),
3288_ => (false, ty),
3289 }
3290 }
32913292/// Record a pattern that's invalid under Rust 2024 match ergonomics, along with a problematic
3293 /// span, so that the pattern migration lint can desugar it during THIR construction.
3294fn add_rust_2024_migration_desugared_pat(
3295&self,
3296 pat_id: HirId,
3297 subpat: &'tcx Pat<'tcx>,
3298 final_char: char,
3299 def_br_mutbl: Mutability,
3300 ) {
3301// Try to trim the span we're labeling to just the `&` or binding mode that's an issue.
3302let from_expansion = subpat.span.from_expansion();
3303let trimmed_span = if from_expansion {
3304// If the subpattern is from an expansion, highlight the whole macro call instead.
3305subpat.span
3306 } else {
3307let trimmed = self.tcx.sess.source_map().span_through_char(subpat.span, final_char);
3308// The edition of the trimmed span should be the same as `subpat.span`; this will be a
3309 // a hard error if the subpattern is of edition >= 2024. We set it manually to be sure:
3310trimmed.with_ctxt(subpat.span.ctxt())
3311 };
33123313let mut typeck_results = self.typeck_results.borrow_mut();
3314let mut table = typeck_results.rust_2024_migration_desugared_pats_mut();
3315// FIXME(ref_pat_eat_one_layer_2024): The migration diagnostic doesn't know how to track the
3316 // default binding mode in the presence of Rule 3 or Rule 5. As a consequence, the labels it
3317 // gives for default binding modes are wrong, as well as suggestions based on the default
3318 // binding mode. This keeps it from making those suggestions, as doing so could panic.
3319let info = table.entry(pat_id).or_insert_with(|| ty::Rust2024IncompatiblePatInfo {
3320 primary_labels: Vec::new(),
3321 bad_ref_modifiers: false,
3322 bad_mut_modifiers: false,
3323 bad_ref_pats: false,
3324 suggest_eliding_modes: !self.tcx.features().ref_pat_eat_one_layer_2024()
3325 && !self.tcx.features().ref_pat_eat_one_layer_2024_structural(),
3326 });
33273328let pat_kind = if let PatKind::Binding(user_bind_annot, _, _, _) = subpat.kind {
3329// If the user-provided binding modifier doesn't match the default binding mode, we'll
3330 // need to suggest reference patterns, which can affect other bindings.
3331 // For simplicity, we opt to suggest making the pattern fully explicit.
3332info.suggest_eliding_modes &= #[allow(non_exhaustive_omitted_patterns)] match user_bind_annot {
BindingMode(ByRef::Yes(_, mutbl), Mutability::Not) if
mutbl == def_br_mutbl => true,
_ => false,
}matches!(
3333 user_bind_annot,
3334 BindingMode(ByRef::Yes(_, mutbl), Mutability::Not) if mutbl == def_br_mutbl
3335 );
3336if user_bind_annot == BindingMode(ByRef::No, Mutability::Mut) {
3337info.bad_mut_modifiers = true;
3338"`mut` binding modifier"
3339} else {
3340info.bad_ref_modifiers = true;
3341match user_bind_annot.1 {
3342 Mutability::Not => "explicit `ref` binding modifier",
3343 Mutability::Mut => "explicit `ref mut` binding modifier",
3344 }
3345 }
3346 } else {
3347info.bad_ref_pats = true;
3348// For simplicity, we don't try to suggest eliding reference patterns. Thus, we'll
3349 // suggest adding them instead, which can affect the types assigned to bindings.
3350 // As such, we opt to suggest making the pattern fully explicit.
3351info.suggest_eliding_modes = false;
3352"reference pattern"
3353};
3354// Only provide a detailed label if the problematic subpattern isn't from an expansion.
3355 // In the case that it's from a macro, we'll add a more detailed note in the emitter.
3356let primary_label = if from_expansion {
3357// We can't suggest eliding modifiers within expansions.
3358info.suggest_eliding_modes = false;
3359// NB: This wording assumes the only expansions that can produce problematic reference
3360 // patterns and bindings are macros. If a desugaring or AST pass is added that can do
3361 // so, we may want to inspect the span's source callee or macro backtrace.
3362"occurs within macro expansion".to_owned()
3363 } else {
3364::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0} not allowed when implicitly borrowing",
pat_kind))
})format!("{pat_kind} not allowed when implicitly borrowing")3365 };
3366info.primary_labels.push((trimmed_span, primary_label));
3367 }
3368}