1
Fork 0

move all mono-time checks into their own folder, and their own query

This commit is contained in:
Ralf Jung 2024-11-10 12:04:12 +01:00
parent 668959740f
commit 23054c5dfc
6 changed files with 135 additions and 106 deletions

View file

@ -16,6 +16,7 @@ use rustc_span::ErrorGuaranteed;
mod collector;
mod errors;
mod mono_checks;
mod partitioning;
mod polymorphize;
mod util;
@ -47,4 +48,5 @@ fn custom_coerce_unsize_info<'tcx>(
pub fn provide(providers: &mut Providers) {
partitioning::provide(providers);
polymorphize::provide(providers);
mono_checks::provide(providers);
}