Skip to content

Commit c2e2245

Browse files
committedApr 9, 2024
Fix trait solver overflow with non_local_definitions lint
1 parent 033becf commit c2e2245

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed
 

‎compiler/rustc_lint/src/non_local_def.rs

+13-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,19 @@ fn impl_trait_ref_has_enough_non_local_candidates<'tcx>(
265265
binder: EarlyBinder<TraitRef<'tcx>>,
266266
mut did_has_local_parent: impl FnMut(DefId) -> bool,
267267
) -> bool {
268-
let infcx = tcx.infer_ctxt().build();
268+
let infcx = tcx
269+
.infer_ctxt()
270+
// We use the new trait solver since the obligation we are trying to
271+
// prove here may overflow and those are fatal in the old trait solver.
272+
// Which is unacceptable for a lint.
273+
//
274+
// Thanksfully the part we use here are very similar to the
275+
// new-trait-solver-as-coherence, which is in stabilization.
276+
//
277+
// https://github.com/rust-lang/rust/issues/123573
278+
.with_next_trait_solver(true)
279+
.build();
280+
269281
let trait_ref = binder.instantiate(tcx, infcx.fresh_args_for_item(infer_span, trait_def_id));
270282

271283
let trait_ref = trait_ref.fold_with(&mut ReplaceLocalTypesWithInfer {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//@ check-pass
2+
//@ edition:2021
3+
4+
// https://github.com/rust-lang/rust/issues/123573#issue-2229428739
5+
6+
pub trait Test {}
7+
8+
impl<'a, T: 'a> Test for &[T] where &'a T: Test {}
9+
10+
fn main() {
11+
struct Local {}
12+
impl Test for &Local {}
13+
//~^ WARN non-local `impl` definition
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
warning: non-local `impl` definition, they should be avoided as they go against expectation
2+
--> $DIR/trait-solver-overflow-123573.rs:12:5
3+
|
4+
LL | impl Test for &Local {}
5+
| ^^^^^^^^^^^^^^^^^^^^^^^
6+
|
7+
= help: move this `impl` block outside the of the current function `main`
8+
= note: an `impl` definition is non-local if it is nested inside an item and may impact type checking outside of that item. This can be the case if neither the trait or the self type are at the same nesting level as the `impl`
9+
= note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type
10+
= 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>
11+
= note: `#[warn(non_local_definitions)]` on by default
12+
13+
warning: 1 warning emitted
14+

0 commit comments

Comments
 (0)