Fix assert_assignable
This commit is contained in:
parent
21edec4ea5
commit
798fb85651
@ -406,6 +406,10 @@ impl<'tcx> CPlace<'tcx> {
|
|||||||
to_ty: Ty<'tcx>,
|
to_ty: Ty<'tcx>,
|
||||||
) {
|
) {
|
||||||
match (&from_ty.kind, &to_ty.kind) {
|
match (&from_ty.kind, &to_ty.kind) {
|
||||||
|
(ty::Ref(_, a, _), ty::Ref(_, b, _))
|
||||||
|
| (ty::RawPtr(TypeAndMut { ty: a, mutbl: _}), ty::RawPtr(TypeAndMut { ty: b, mutbl: _})) => {
|
||||||
|
assert_assignable(fx, a, b);
|
||||||
|
}
|
||||||
(ty::FnPtr(_), ty::FnPtr(_)) => {
|
(ty::FnPtr(_), ty::FnPtr(_)) => {
|
||||||
let from_sig = fx.tcx.normalize_erasing_late_bound_regions(
|
let from_sig = fx.tcx.normalize_erasing_late_bound_regions(
|
||||||
ParamEnv::reveal_all(),
|
ParamEnv::reveal_all(),
|
||||||
|
Loading…
Reference in New Issue
Block a user