Skip to content

Commit f5dcfd1

Browse files
authored
Unrolled build for rust-lang#131660
Rollup merge of rust-lang#131660 - Urgau:non_local_def-131643, r=jieyouxu Also use outermost const-anon for impl items in `non_local_defs` lint This PR update the logic for the impl paths (items) in the `non_local_definitions` lint to also consider const-anon in case the impl definition is wrapped inside const-anon it-self wrapped into a const-anon where the items are. r? `@jieyouxu` *(since you interacted on the issue)* Fixes *(after beta-backport)* rust-lang#131643
2 parents f6648f2 + b5e91a0 commit f5dcfd1

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

compiler/rustc_lint/src/non_local_def.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -301,9 +301,13 @@ fn did_has_local_parent(
301301
return false;
302302
};
303303

304-
peel_parent_while(tcx, parent_did, |tcx, did| tcx.def_kind(did) == DefKind::Mod)
305-
.map(|parent_did| parent_did == impl_parent || Some(parent_did) == outermost_impl_parent)
306-
.unwrap_or(false)
304+
peel_parent_while(tcx, parent_did, |tcx, did| {
305+
tcx.def_kind(did) == DefKind::Mod
306+
|| (tcx.def_kind(did) == DefKind::Const
307+
&& tcx.opt_item_name(did) == Some(kw::Underscore))
308+
})
309+
.map(|parent_did| parent_did == impl_parent || Some(parent_did) == outermost_impl_parent)
310+
.unwrap_or(false)
307311
}
308312

309313
/// Given a `DefId` checks if it satisfies `f` if it does check with it's parent and continue

tests/ui/lint/non-local-defs/convoluted-locals-131474-with-mods.rs

+11
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,15 @@ const _: () = {
3131
};
3232
};
3333

34+
// https://github.com/rust-lang/rust/issues/131643
35+
const _: () = {
36+
const _: () = {
37+
impl tmp::InnerTest {}
38+
};
39+
40+
mod tmp {
41+
pub(super) struct InnerTest;
42+
}
43+
};
44+
3445
fn main() {}

tests/ui/lint/non-local-defs/convoluted-locals-131474.rs

+9
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,13 @@ const _: () = {
2121
};
2222
};
2323

24+
// https://github.com/rust-lang/rust/issues/131643
25+
const _: () = {
26+
const _: () = {
27+
impl InnerTest {}
28+
};
29+
30+
struct InnerTest;
31+
};
32+
2433
fn main() {}

0 commit comments

Comments
 (0)