Fix impl for SolverDelegate
This commit is contained in:
parent
532149eb88
commit
7d2be888b6
11 changed files with 385 additions and 85 deletions
12
compiler/rustc_trait_selection/src/solve.rs
Normal file
12
compiler/rustc_trait_selection/src/solve.rs
Normal file
|
@ -0,0 +1,12 @@
|
|||
pub use rustc_next_trait_solver::solve::*;
|
||||
|
||||
mod fulfill;
|
||||
mod infcx;
|
||||
pub mod inspect;
|
||||
mod normalize;
|
||||
mod select;
|
||||
|
||||
pub use fulfill::{FulfillmentCtxt, NextSolverError};
|
||||
pub(crate) use normalize::deeply_normalize_for_diagnostics;
|
||||
pub use normalize::{deeply_normalize, deeply_normalize_with_skipped_universes};
|
||||
pub use select::InferCtxtSelectExt;
|
Loading…
Add table
Add a link
Reference in a new issue