Skip to content

Commit 532149e

Browse files
Uplift the new trait solver
1 parent baf94bd commit 532149e

36 files changed

+2000
-1443
lines changed

Cargo.lock

+9
Original file line numberDiff line numberDiff line change
@@ -4520,7 +4520,16 @@ dependencies = [
45204520
name = "rustc_next_trait_solver"
45214521
version = "0.0.0"
45224522
dependencies = [
4523+
"bitflags 2.5.0",
4524+
"derivative",
4525+
"rustc_ast_ir",
4526+
"rustc_data_structures",
4527+
"rustc_index",
4528+
"rustc_macros",
4529+
"rustc_serialize",
45234530
"rustc_type_ir",
4531+
"rustc_type_ir_macros",
4532+
"tracing",
45244533
]
45254534

45264535
[[package]]

compiler/rustc_middle/src/ty/adt.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -205,14 +205,22 @@ impl<'tcx> rustc_type_ir::inherent::AdtDef<TyCtxt<'tcx>> for AdtDef<'tcx> {
205205
self.did()
206206
}
207207

208+
fn is_struct(self) -> bool {
209+
self.is_struct()
210+
}
211+
212+
fn struct_tail_ty(self, interner: TyCtxt<'tcx>) -> Option<ty::EarlyBinder<'tcx, Ty<'tcx>>> {
213+
Some(interner.type_of(self.non_enum_variant().tail_opt()?.did))
214+
}
215+
208216
fn is_phantom_data(self) -> bool {
209217
self.is_phantom_data()
210218
}
211219

212220
fn all_field_tys(
213221
self,
214222
tcx: TyCtxt<'tcx>,
215-
) -> ty::EarlyBinder<'tcx, impl Iterator<Item = Ty<'tcx>>> {
223+
) -> ty::EarlyBinder<'tcx, impl IntoIterator<Item = Ty<'tcx>>> {
216224
ty::EarlyBinder::bind(
217225
self.all_fields().map(move |field| tcx.type_of(field.did).skip_binder()),
218226
)

compiler/rustc_middle/src/ty/consts.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ mod valtree;
1616

1717
pub use int::*;
1818
pub use kind::*;
19-
use rustc_span::Span;
2019
use rustc_span::DUMMY_SP;
20+
use rustc_span::{ErrorGuaranteed, Span};
2121
pub use valtree::*;
2222

2323
pub type ConstKind<'tcx> = ir::ConstKind<TyCtxt<'tcx>>;
@@ -176,6 +176,10 @@ impl<'tcx> rustc_type_ir::inherent::Const<TyCtxt<'tcx>> for Const<'tcx> {
176176
fn new_expr(interner: TyCtxt<'tcx>, expr: ty::Expr<'tcx>) -> Self {
177177
Const::new_expr(interner, expr)
178178
}
179+
180+
fn new_error(interner: TyCtxt<'tcx>, guar: ErrorGuaranteed) -> Self {
181+
Const::new_error(interner, guar)
182+
}
179183
}
180184

181185
impl<'tcx> Const<'tcx> {

0 commit comments

Comments
 (0)