Remove movability from TyKind::Coroutine
This commit is contained in:
parent
bcae781754
commit
6b1a3ad4a6
@ -974,8 +974,8 @@ pub(crate) fn assert_assignable<'tcx>(
|
||||
}
|
||||
}
|
||||
}
|
||||
(&ty::Coroutine(def_id_a, args_a, mov_a), &ty::Coroutine(def_id_b, args_b, mov_b))
|
||||
if def_id_a == def_id_b && mov_a == mov_b =>
|
||||
(&ty::Coroutine(def_id_a, args_a), &ty::Coroutine(def_id_b, args_b))
|
||||
if def_id_a == def_id_b =>
|
||||
{
|
||||
let mut types_a = args_a.types();
|
||||
let mut types_b = args_b.types();
|
||||
|
Loading…
Reference in New Issue
Block a user