Implement MIR, CTFE, and codegen for unsafe binders

This commit is contained in:
Michael Goulet
2025-01-31 01:24:37 +00:00
parent 73993387fd
commit 62c68e15b8

View File

@@ -289,7 +289,8 @@ fn check_place<'tcx>(tcx: TyCtxt<'tcx>, place: Place<'tcx>, span: Span, body: &B
| ProjectionElem::Downcast(..)
| ProjectionElem::Subslice { .. }
| ProjectionElem::Subtype(_)
| ProjectionElem::Index(_) => {},
| ProjectionElem::Index(_)
| ProjectionElem::UnwrapUnsafeBinder(_) => {},
}
}