1
Fork 0

Perform wf checking per module.

This commit is contained in:
Camille GILLOT 2021-05-10 12:18:55 +02:00
parent 42289ff931
commit 86290effd5
5 changed files with 19 additions and 10 deletions

View file

@ -826,6 +826,10 @@ rustc_queries! {
desc { |tcx| "checking that impls are well-formed in {}", describe_as_module(key, tcx) }
}
query check_mod_type_wf(key: LocalDefId) -> () {
desc { |tcx| "checking that types are well-formed in {}", describe_as_module(key, tcx) }
}
query collect_mod_item_types(key: LocalDefId) -> () {
desc { |tcx| "collecting item types in {}", describe_as_module(key, tcx) }
}