Split -Zchalk
flag into -Ztrait-solver=(stock|chalk|next)
flag
This commit is contained in:
parent
df756439df
commit
a4974fa9c7
7 changed files with 44 additions and 16 deletions
|
@ -2,6 +2,7 @@ use rustc_data_structures::fx::FxIndexSet;
|
|||
use rustc_hir as hir;
|
||||
use rustc_hir::def_id::DefId;
|
||||
use rustc_middle::ty::{self, Binder, Predicate, PredicateKind, ToPredicate, Ty, TyCtxt};
|
||||
use rustc_session::config::TraitSolver;
|
||||
use rustc_trait_selection::traits;
|
||||
|
||||
fn sized_constraint_for_ty<'tcx>(
|
||||
|
@ -121,7 +122,7 @@ fn param_env(tcx: TyCtxt<'_>, def_id: DefId) -> ty::ParamEnv<'_> {
|
|||
// are any errors at that point, so outside of type inference you can be
|
||||
// sure that this will succeed without errors anyway.
|
||||
|
||||
if tcx.sess.opts.unstable_opts.chalk {
|
||||
if tcx.sess.opts.unstable_opts.trait_solver == TraitSolver::Chalk {
|
||||
let environment = well_formed_types_in_env(tcx, def_id);
|
||||
predicates.extend(environment);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue