diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2021-06-17 05:54:59 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-17 05:54:59 +0900 |
| commit | 05ba958fe8918725c4caed4e9b6a7af5f38e72ac (patch) | |
| tree | 8cfa4d1f6878943314516552eb47262798c989ab /compiler/rustc_middle/src/query | |
| parent | 36bf808aa1a4633ac0d69c9d06063e0760c8a5a2 (diff) | |
| parent | 280d19395d264d295e6d8d4f3c7cef368e04aad0 (diff) | |
| download | rust-05ba958fe8918725c4caed4e9b6a7af5f38e72ac.tar.gz rust-05ba958fe8918725c4caed4e9b6a7af5f38e72ac.zip | |
Rollup merge of #86353 - JohnTitor:remove-projection_ty_from_predicates, r=oli-obk
Remove `projection_ty_from_predicates` Fixes #86350 r? ``@oli-obk``
Diffstat (limited to 'compiler/rustc_middle/src/query')
| -rw-r--r-- | compiler/rustc_middle/src/query/mod.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs index a6f9a7c96f0..dda407940e3 100644 --- a/compiler/rustc_middle/src/query/mod.rs +++ b/compiler/rustc_middle/src/query/mod.rs @@ -191,10 +191,6 @@ rustc_queries! { desc { |tcx| "elaborating item bounds for `{}`", tcx.def_path_str(key) } } - query projection_ty_from_predicates(key: (DefId, DefId)) -> Option<ty::ProjectionTy<'tcx>> { - desc { |tcx| "finding projection type inside predicates of `{}`", tcx.def_path_str(key.0) } - } - query native_libraries(_: CrateNum) -> Lrc<Vec<NativeLib>> { desc { "looking up the native libraries of a linked crate" } } |
