Skip to content

Commit ca34c45

Browse files
authored
Unrolled build for rust-lang#120899
Rollup merge of rust-lang#120899 - compiler-errors:non-wf-alias, r=lcnr Gracefully handle non-WF alias in `assemble_alias_bound_candidates_recur` See explanation in test. I think it's fine to delay a bug here -- I don't believe we ever construct a non-wf alias on the good path? If so, then we can just remove the delay. Fixes rust-lang#120891 r? lcnr
2 parents bdc1592 + 5461fd4 commit ca34c45

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed

compiler/rustc_trait_selection/src/solve/assembly/mod.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use rustc_middle::ty::fast_reject::{SimplifiedType, TreatParams};
1515
use rustc_middle::ty::{self, Ty, TyCtxt};
1616
use rustc_middle::ty::{fast_reject, TypeFoldable};
1717
use rustc_middle::ty::{ToPredicate, TypeVisitableExt};
18-
use rustc_span::ErrorGuaranteed;
18+
use rustc_span::{ErrorGuaranteed, DUMMY_SP};
1919
use std::fmt::Debug;
2020

2121
pub(super) mod structural_traits;
@@ -612,7 +612,11 @@ impl<'tcx> EvalCtxt<'_, 'tcx> {
612612

613613
ty::Alias(kind @ (ty::Projection | ty::Opaque), alias_ty) => (kind, alias_ty),
614614
ty::Alias(ty::Inherent | ty::Weak, _) => {
615-
unreachable!("Weak and Inherent aliases should have been normalized away already")
615+
self.tcx().sess.dcx().span_delayed_bug(
616+
DUMMY_SP,
617+
format!("could not normalize {self_ty}, it is not WF"),
618+
);
619+
return;
616620
}
617621
};
618622

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// compile-flags: -Znext-solver
2+
3+
#![feature(lazy_type_alias)]
4+
//~^ WARN the feature `lazy_type_alias` is incomplete
5+
6+
trait Foo {}
7+
8+
type A<T: Foo> = T;
9+
10+
struct W<T>(T);
11+
12+
// For `W<A<usize>>` to be WF, `A<usize>: Sized` must hold. However, when assembling
13+
// alias bounds for `A<usize>`, we try to normalize it, but it doesn't hold because
14+
// `usize: Foo` doesn't hold. Therefore we ICE, because we don't expect to still
15+
// encounter weak types in `assemble_alias_bound_candidates_recur`.
16+
fn hello(_: W<A<usize>>) {}
17+
//~^ ERROR the type `W<A<usize>>` is not well-formed
18+
19+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
warning: the feature `lazy_type_alias` is incomplete and may not be safe to use and/or cause compiler crashes
2+
--> $DIR/alias-bounds-when-not-wf.rs:3:12
3+
|
4+
LL | #![feature(lazy_type_alias)]
5+
| ^^^^^^^^^^^^^^^
6+
|
7+
= note: see issue #112792 <https://github.com/rust-lang/rust/issues/112792> for more information
8+
= note: `#[warn(incomplete_features)]` on by default
9+
10+
error: the type `W<A<usize>>` is not well-formed
11+
--> $DIR/alias-bounds-when-not-wf.rs:16:13
12+
|
13+
LL | fn hello(_: W<A<usize>>) {}
14+
| ^^^^^^^^^^^
15+
16+
error: aborting due to 1 previous error; 1 warning emitted
17+

0 commit comments

Comments
 (0)