We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
check_mod_type_wf
check_well_formed
1 parent cdcdb4e commit 0da8104Copy full SHA for 0da8104
compiler/rustc_middle/src/query/mod.rs
@@ -977,6 +977,7 @@ rustc_queries! {
977
978
query check_mod_type_wf(key: LocalModDefId) -> Result<(), ErrorGuaranteed> {
979
desc { |tcx| "checking that types are well-formed in {}", describe_as_module(key, tcx) }
980
+ cache_on_disk_if { true }
981
}
982
983
query collect_mod_item_types(key: LocalModDefId) -> () {
@@ -1511,6 +1512,7 @@ rustc_queries! {
1511
1512
1513
query check_well_formed(key: hir::OwnerId) -> Result<(), ErrorGuaranteed> {
1514
desc { |tcx| "checking that `{}` is well-formed", tcx.def_path_str(key) }
1515
1516
1517
1518
// The `DefId`s of all non-generic functions and statics in the given crate
0 commit comments