1
Fork 0

Move associated_item* providers to their own module

This commit is contained in:
Matthew Jasper 2021-11-18 21:44:45 +00:00 committed by Noah Lev
parent d7595853a2
commit 1b057a33bd
3 changed files with 234 additions and 225 deletions

View file

@ -16,6 +16,7 @@ extern crate tracing;
use rustc_middle::ty::query::Providers;
mod assoc;
mod common_traits;
pub mod instance;
mod needs_drop;
@ -23,6 +24,7 @@ pub mod representability;
mod ty;
pub fn provide(providers: &mut Providers) {
assoc::provide(providers);
common_traits::provide(providers);
needs_drop::provide(providers);
ty::provide(providers);