diff options
| author | lcnr <rust@lcnr.de> | 2024-11-22 12:13:29 +0100 |
|---|---|---|
| committer | lcnr <rust@lcnr.de> | 2024-11-23 13:52:57 +0100 |
| commit | 776731dc3f5396cb8f2f9b94a667f3926d8f5765 (patch) | |
| tree | 119eea63e8f8badd42336675917109088f31579e /compiler/rustc_middle/src | |
| parent | 8c7c83d6ef33864426ae607af24399b2687ad979 (diff) | |
| download | rust-776731dc3f5396cb8f2f9b94a667f3926d8f5765.tar.gz rust-776731dc3f5396cb8f2f9b94a667f3926d8f5765.zip | |
rebase
Diffstat (limited to 'compiler/rustc_middle/src')
| -rw-r--r-- | compiler/rustc_middle/src/query/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs index e94e0332aa4..0f2a6d598a0 100644 --- a/compiler/rustc_middle/src/query/mod.rs +++ b/compiler/rustc_middle/src/query/mod.rs @@ -1467,7 +1467,7 @@ rustc_queries! { /// *IMPORTANT*: *DO NOT* run this query before promoted MIR body is constructed, /// because this query partially depends on that query. /// Otherwise, there is a risk of query cycles. - query list_significant_drop_tys(ty: ty::ParamEnvAnd<'tcx, Ty<'tcx>>) -> &'tcx ty::List<Ty<'tcx>> { + query list_significant_drop_tys(ty: ty::PseudoCanonicalInput<'tcx, Ty<'tcx>>) -> &'tcx ty::List<Ty<'tcx>> { desc { |tcx| "computing when `{}` has a significant destructor", ty.value } cache_on_disk_if { false } } |
