File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
rustc_mir_transform/src/coroutine Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -439,7 +439,6 @@ rustc_queries! {
439
439
query predicates_of( key: DefId ) -> ty:: GenericPredicates <' tcx> {
440
440
desc { |tcx| "computing predicates of `{}`" , tcx. def_path_str( key) }
441
441
cache_on_disk_if { key. is_local( ) }
442
- feedable
443
442
}
444
443
445
444
query opaque_types_defined_by(
Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ pub(crate) fn coroutine_by_move_body_def_id<'tcx>(
239
239
body_def. explicit_predicates_of ( tcx. explicit_predicates_of ( coroutine_def_id) ) ;
240
240
body_def. generics_of ( tcx. generics_of ( coroutine_def_id) . clone ( ) ) ;
241
241
body_def. param_env ( tcx. param_env ( coroutine_def_id) ) ;
242
- body_def. predicates_of ( tcx. predicates_of ( coroutine_def_id) ) ;
242
+ body_def. explicit_predicates_of ( tcx. explicit_predicates_of ( coroutine_def_id) ) ;
243
243
244
244
// The type of the coroutine is the `by_move_coroutine_ty`.
245
245
body_def. type_of ( ty:: EarlyBinder :: bind ( by_move_coroutine_ty) ) ;
You can’t perform that action at this time.
0 commit comments