borrowck nested items in dead code

This commit is contained in:
lcnr
2025-05-02 16:24:28 +00:00
parent f97b3c6044
commit ffa7d1ee5d
11 changed files with 135 additions and 64 deletions

View File

@@ -29,10 +29,10 @@ mod implied_bounds;
mod instance;
mod layout;
mod needs_drop;
mod nested_bodies;
mod opaque_types;
mod representability;
pub mod sig_types;
mod stalled_generators;
mod structural_match;
mod ty;
@@ -51,5 +51,5 @@ pub fn provide(providers: &mut Providers) {
ty::provide(providers);
instance::provide(providers);
structural_match::provide(providers);
stalled_generators::provide(providers);
nested_bodies::provide(providers);
}