Skip to content

Commit 7e05da8

Browse files
committed
Consider outermost const-anon in non_local_def lint
1 parent 0b16baa commit 7e05da8

File tree

6 files changed

+148
-34
lines changed

6 files changed

+148
-34
lines changed

compiler/rustc_lint/src/non_local_def.rs

+59-31
Original file line numberDiff line numberDiff line change
@@ -124,16 +124,6 @@ impl<'tcx> LateLintPass<'tcx> for NonLocalDefinitions {
124124
// If that's the case this means that this impl block declaration
125125
// is using local items and so we don't lint on it.
126126

127-
// We also ignore anon-const in item by including the anon-const
128-
// parent as well.
129-
let parent_parent = if parent_def_kind == DefKind::Const
130-
&& parent_opt_item_name == Some(kw::Underscore)
131-
{
132-
Some(cx.tcx.parent(parent))
133-
} else {
134-
None
135-
};
136-
137127
// 1. We collect all the `hir::Path` from the `Self` type and `Trait` ref
138128
// of the `impl` definition
139129
let mut collector = PathCollector { paths: Vec::new() };
@@ -148,13 +138,33 @@ impl<'tcx> LateLintPass<'tcx> for NonLocalDefinitions {
148138
|p| matches!(p.res, Res::Def(def_kind, _) if def_kind != DefKind::TyParam),
149139
);
150140

151-
// 2. We check if any of path reference a "local" parent and if that the case
152-
// we bail out as asked by T-lang, even though this isn't correct from a
153-
// type-system point of view, as inference exists and could still leak the impl.
141+
// 1.9. We retrieve the parent def id of the impl item, ...
142+
//
143+
// ... modulo const-anons items, for enhanced compatibility with the ecosystem
144+
// as that pattern is common with `serde`, `bevy`, ...
145+
//
146+
// For this example we want the `DefId` parent of the outermost const-anon items.
147+
// ```
148+
// const _: () = { // the parent of this const-anon
149+
// const _: () = {
150+
// impl Foo {}
151+
// };
152+
// };
153+
// ```
154+
let outermost_impl_parent = peel_parent_while(cx.tcx, parent, |tcx, did| {
155+
tcx.def_kind(did) == DefKind::Const
156+
&& tcx.opt_item_name(did) == Some(kw::Underscore)
157+
});
158+
159+
// 2. We check if any of the paths reference a the `impl`-parent.
160+
//
161+
// If that the case we bail out, as was asked by T-lang, even though this isn't
162+
// correct from a type-system point of view, as inference exists and one-impl-rule
163+
// make its so that we could still leak the impl.
154164
if collector
155165
.paths
156166
.iter()
157-
.any(|path| path_has_local_parent(path, cx, parent, parent_parent))
167+
.any(|path| path_has_local_parent(path, cx, parent, outermost_impl_parent))
158168
{
159169
return;
160170
}
@@ -253,8 +263,8 @@ impl<'tcx> Visitor<'tcx> for PathCollector<'tcx> {
253263
}
254264
}
255265

256-
/// Given a path and a parent impl def id, this checks if the if parent resolution
257-
/// def id correspond to the def id of the parent impl definition.
266+
/// Given a path, this checks if the if the parent resolution def id corresponds to
267+
/// the def id of the parent impl definition (the direct one and the outermost one).
258268
///
259269
/// Given this path, we will look at the path (and ignore any generic args):
260270
///
@@ -267,32 +277,50 @@ fn path_has_local_parent(
267277
path: &Path<'_>,
268278
cx: &LateContext<'_>,
269279
impl_parent: DefId,
270-
impl_parent_parent: Option<DefId>,
280+
outermost_impl_parent: Option<DefId>,
271281
) -> bool {
272282
path.res
273283
.opt_def_id()
274-
.is_some_and(|did| did_has_local_parent(did, cx.tcx, impl_parent, impl_parent_parent))
284+
.is_some_and(|did| did_has_local_parent(did, cx.tcx, impl_parent, outermost_impl_parent))
275285
}
276286

277-
/// Given a def id and a parent impl def id, this checks if the parent
278-
/// def id (modulo modules) correspond to the def id of the parent impl definition.
287+
/// Given a def id this checks if the parent def id (modulo modules) correspond to
288+
/// the def id of the parent impl definition (the direct one and the outermost one).
279289
#[inline]
280290
fn did_has_local_parent(
281291
did: DefId,
282292
tcx: TyCtxt<'_>,
283293
impl_parent: DefId,
284-
impl_parent_parent: Option<DefId>,
294+
outermost_impl_parent: Option<DefId>,
285295
) -> bool {
286-
did.is_local()
287-
&& if let Some(did_parent) = tcx.opt_parent(did) {
288-
did_parent == impl_parent
289-
|| Some(did_parent) == impl_parent_parent
290-
|| !did_parent.is_crate_root()
291-
&& tcx.def_kind(did_parent) == DefKind::Mod
292-
&& did_has_local_parent(did_parent, tcx, impl_parent, impl_parent_parent)
293-
} else {
294-
false
295-
}
296+
if !did.is_local() {
297+
return false;
298+
}
299+
300+
let Some(parent_did) = tcx.opt_parent(did) else {
301+
return false;
302+
};
303+
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)
307+
}
308+
309+
/// Given a `DefId` checks if it satisfies `f` if it does check with it's parent and continue
310+
/// until it doesn't satisfies `f` and return the last `DefId` checked.
311+
///
312+
/// In other word this method return the first `DefId` that doesn't satisfies `f`.
313+
#[inline]
314+
fn peel_parent_while(
315+
tcx: TyCtxt<'_>,
316+
mut did: DefId,
317+
mut f: impl FnMut(TyCtxt<'_>, DefId) -> bool,
318+
) -> Option<DefId> {
319+
while !did.is_crate_root() && f(tcx, did) {
320+
did = tcx.opt_parent(did).filter(|parent_did| parent_did.is_local())?;
321+
}
322+
323+
Some(did)
296324
}
297325

298326
/// Return for a given `Path` the span until the last args

tests/ui/lint/non-local-defs/consts.rs

+7
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@ fn main() {
6363

6464
1
6565
};
66+
67+
const _: () = {
68+
const _: () = {
69+
impl Test {}
70+
//~^ WARN non-local `impl` definition
71+
};
72+
};
6673
}
6774

6875
trait Uto9 {}

tests/ui/lint/non-local-defs/consts.stderr

+17-3
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,21 @@ LL | impl Test {
9595
= note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue <https://github.com/rust-lang/rust/issues/120363>
9696

9797
warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
98-
--> $DIR/consts.rs:72:9
98+
--> $DIR/consts.rs:69:13
99+
|
100+
LL | const _: () = {
101+
| ----------- move the `impl` block outside of this constant `_` and up 3 bodies
102+
LL | impl Test {}
103+
| ^^^^^----
104+
| |
105+
| `Test` is not local
106+
|
107+
= note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
108+
= note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint
109+
= note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue <https://github.com/rust-lang/rust/issues/120363>
110+
111+
warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
112+
--> $DIR/consts.rs:79:9
99113
|
100114
LL | let _a = || {
101115
| -- move the `impl` block outside of this closure `<unnameable>` and up 2 bodies
@@ -109,7 +123,7 @@ LL | impl Uto9 for Test {}
109123
= note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue <https://github.com/rust-lang/rust/issues/120363>
110124

111125
warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item
112-
--> $DIR/consts.rs:79:9
126+
--> $DIR/consts.rs:86:9
113127
|
114128
LL | type A = [u32; {
115129
| ____________________-
@@ -126,5 +140,5 @@ LL | | }];
126140
= note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
127141
= note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue <https://github.com/rust-lang/rust/issues/120363>
128142

129-
warning: 8 warnings emitted
143+
warning: 9 warnings emitted
130144

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// This test check that no matter the nesting of const-anons and modules
2+
// we consider them as transparent.
3+
//
4+
// Similar to https://github.com/rust-lang/rust/issues/131474
5+
6+
//@ check-pass
7+
8+
pub mod tmp {
9+
pub mod tmp {
10+
pub struct Test;
11+
}
12+
}
13+
14+
const _: () = {
15+
const _: () = {
16+
const _: () = {
17+
const _: () = {
18+
impl tmp::tmp::Test {}
19+
};
20+
};
21+
};
22+
};
23+
24+
const _: () = {
25+
const _: () = {
26+
mod tmp {
27+
pub(super) struct InnerTest;
28+
}
29+
30+
impl tmp::InnerTest {}
31+
};
32+
};
33+
34+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// This test check that no matter the nesting of const-anons we consider
2+
// them as transparent.
3+
//
4+
// https://github.com/rust-lang/rust/issues/131474
5+
6+
//@ check-pass
7+
8+
pub struct Test;
9+
10+
const _: () = {
11+
const _: () = {
12+
impl Test {}
13+
};
14+
};
15+
16+
const _: () = {
17+
const _: () = {
18+
struct InnerTest;
19+
20+
impl InnerTest {}
21+
};
22+
};
23+
24+
fn main() {}

tests/ui/lint/non-local-defs/local.rs

+7
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,10 @@ fn bitflags() {
5151
impl Flags {}
5252
};
5353
}
54+
55+
fn bitflags_internal() {
56+
const _: () = {
57+
struct InternalFlags;
58+
impl InternalFlags {}
59+
};
60+
}

0 commit comments

Comments
 (0)