Move codegen_select_candidate to a rustc_traits
This commit is contained in:
parent
b36035c20f
commit
25a6daccab
3 changed files with 8 additions and 8 deletions
|
@ -18,6 +18,7 @@ mod implied_outlives_bounds;
|
|||
mod normalize_erasing_regions;
|
||||
mod normalize_projection_ty;
|
||||
mod type_op;
|
||||
mod codegen;
|
||||
|
||||
pub use type_op::{type_op_ascribe_user_type_with_span, type_op_prove_predicate_with_cause};
|
||||
|
||||
|
@ -31,4 +32,5 @@ pub fn provide(p: &mut Providers) {
|
|||
normalize_projection_ty::provide(p);
|
||||
normalize_erasing_regions::provide(p);
|
||||
type_op::provide(p);
|
||||
p.codegen_select_candidate = codegen::codegen_select_candidate;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue