Skip to content

Commit 0160bff

Browse files
committed
Auto merge of #125084 - Jules-Bertholet:fix-125058, r=Nadrieril
`rustc_hir_typeck`: Account for `skipped_ref_pats` in `expr_use_visitor` Fixes #125058 r? `@Nadrieril` cc #123076 `@rustbot` label A-edition-2024 A-patterns
2 parents 8387315 + fe8f66e commit 0160bff

File tree

3 files changed

+53
-1
lines changed

3 files changed

+53
-1
lines changed

compiler/rustc_hir_typeck/src/expr_use_visitor.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ use rustc_hir as hir;
1818
use rustc_hir::def::{CtorOf, Res};
1919
use rustc_hir::def_id::LocalDefId;
2020
use rustc_hir::{HirId, PatKind};
21-
use rustc_middle::{bug, span_bug};
2221
use rustc_middle::hir::place::ProjectionKind;
2322
use rustc_middle::mir::FakeReadCause;
2423
use rustc_middle::ty::{
2524
self, adjustment, AdtKind, Ty, TyCtxt, TypeFoldable, TypeVisitableExt as _,
2625
};
26+
use rustc_middle::{bug, span_bug};
2727
use rustc_span::{ErrorGuaranteed, Span};
2828
use rustc_target::abi::{FieldIdx, VariantIdx, FIRST_VARIANT};
2929
use rustc_trait_selection::infer::InferCtxtExt;
@@ -1181,6 +1181,10 @@ impl<'tcx, Cx: TypeInformationCtxt<'tcx>, D: Delegate<'tcx>> ExprUseVisitor<'tcx
11811181
debug!("pat_ty(pat={:?}) found adjusted ty `{:?}`", pat, first_ty);
11821182
return Ok(*first_ty);
11831183
}
1184+
} else if let PatKind::Ref(subpat, _) = pat.kind
1185+
&& self.cx.typeck_results().skipped_ref_pats().contains(pat.hir_id)
1186+
{
1187+
return self.pat_ty_adjusted(subpat);
11841188
}
11851189

11861190
self.pat_ty_unadjusted(pat)
@@ -1712,6 +1716,12 @@ impl<'tcx, Cx: TypeInformationCtxt<'tcx>, D: Delegate<'tcx>> ExprUseVisitor<'tcx
17121716
self.cat_pattern(place_with_id, subpat, op)?;
17131717
}
17141718

1719+
PatKind::Ref(subpat, _)
1720+
if self.cx.typeck_results().skipped_ref_pats().contains(pat.hir_id) =>
1721+
{
1722+
self.cat_pattern(place_with_id, subpat, op)?;
1723+
}
1724+
17151725
PatKind::Box(subpat) | PatKind::Ref(subpat, _) => {
17161726
// box p1, &p1, &mut p1. we can ignore the mutability of
17171727
// PatKind::Ref since that information is already contained
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//@ run-pass
2+
//@ edition: 2024
3+
//@ compile-flags: -Zunstable-options
4+
5+
#![allow(incomplete_features)]
6+
#![feature(ref_pat_eat_one_layer_2024)]
7+
8+
struct Foo;
9+
//~^ WARN struct `Foo` is never constructed
10+
11+
fn main() {
12+
|| {
13+
//~^ WARN unused closure that must be used
14+
if let Some(Some(&mut x)) = &mut Some(&mut Some(0)) {
15+
let _: u32 = x;
16+
}
17+
};
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
warning: struct `Foo` is never constructed
2+
--> $DIR/skipped-ref-pats-issue-125058.rs:8:8
3+
|
4+
LL | struct Foo;
5+
| ^^^
6+
|
7+
= note: `#[warn(dead_code)]` on by default
8+
9+
warning: unused closure that must be used
10+
--> $DIR/skipped-ref-pats-issue-125058.rs:12:5
11+
|
12+
LL | / || {
13+
LL | |
14+
LL | | if let Some(Some(&mut x)) = &mut Some(&mut Some(0)) {
15+
LL | | let _: u32 = x;
16+
LL | | }
17+
LL | | };
18+
| |_____^
19+
|
20+
= note: closures are lazy and do nothing unless called
21+
= note: `#[warn(unused_must_use)]` on by default
22+
23+
warning: 2 warnings emitted
24+

0 commit comments

Comments
 (0)