@@ -88,6 +88,11 @@ pub fn coroutine_by_move_body_def_id<'tcx>(
88
88
) -> DefId {
89
89
let body = tcx. mir_built ( coroutine_def_id) . borrow ( ) ;
90
90
91
+ // If the typeck results are tainted, no need to make a by-ref body.
92
+ if tcx. typeck ( coroutine_def_id) . tainted_by_errors . is_some ( ) {
93
+ return coroutine_def_id. to_def_id ( ) ;
94
+ }
95
+
91
96
let Some ( hir:: CoroutineKind :: Desugared ( _, hir:: CoroutineSource :: Closure ) ) =
92
97
tcx. coroutine_kind ( coroutine_def_id)
93
98
else {
@@ -98,7 +103,9 @@ pub fn coroutine_by_move_body_def_id<'tcx>(
98
103
// the MIR body will be constructed well.
99
104
let coroutine_ty = body. local_decls [ ty:: CAPTURE_STRUCT_LOCAL ] . ty ;
100
105
101
- let ty:: Coroutine ( _, args) = * coroutine_ty. kind ( ) else { bug ! ( "{body:#?}" ) } ;
106
+ let ty:: Coroutine ( _, args) = * coroutine_ty. kind ( ) else {
107
+ bug ! ( "tried to create by-move body of non-coroutine receiver" ) ;
108
+ } ;
102
109
let args = args. as_coroutine ( ) ;
103
110
104
111
let coroutine_kind = args. kind_ty ( ) . to_opt_closure_kind ( ) . unwrap ( ) ;
@@ -107,7 +114,7 @@ pub fn coroutine_by_move_body_def_id<'tcx>(
107
114
let ty:: CoroutineClosure ( _, parent_args) =
108
115
* tcx. type_of ( parent_def_id) . instantiate_identity ( ) . kind ( )
109
116
else {
110
- bug ! ( ) ;
117
+ bug ! ( "coroutine's parent was not a coroutine-closure" ) ;
111
118
} ;
112
119
if parent_args. references_error ( ) {
113
120
return coroutine_def_id. to_def_id ( ) ;
0 commit comments