Rollup merge of #118888 - compiler-errors:uplift-more-things, r=jackh726
Uplift `TypeAndMut` and `ClosureKind` to `rustc_type_ir` Uplifts `TypeAndMut` and `ClosureKind` I know I said I was just going to get rid of `TypeAndMut` (https://github.com/rust-lang/types-team/issues/124) but I think this is much simpler, lol r? `@jackh726` or `@lcnr`
This commit is contained in:
commit
f90e8ef6b8
@ -10,8 +10,8 @@ use super::AS_PTR_CAST_MUT;
|
|||||||
|
|
||||||
pub(super) fn check(cx: &LateContext<'_>, expr: &Expr<'_>, cast_expr: &Expr<'_>, cast_to: Ty<'_>) {
|
pub(super) fn check(cx: &LateContext<'_>, expr: &Expr<'_>, cast_expr: &Expr<'_>, cast_to: Ty<'_>) {
|
||||||
if let ty::RawPtr(
|
if let ty::RawPtr(
|
||||||
ptrty @ TypeAndMut {
|
TypeAndMut {
|
||||||
mutbl: Mutability::Mut, ..
|
mutbl: Mutability::Mut, ty: ptrty,
|
||||||
},
|
},
|
||||||
) = cast_to.kind()
|
) = cast_to.kind()
|
||||||
&& let ty::RawPtr(TypeAndMut {
|
&& let ty::RawPtr(TypeAndMut {
|
||||||
@ -34,7 +34,7 @@ pub(super) fn check(cx: &LateContext<'_>, expr: &Expr<'_>, cast_expr: &Expr<'_>,
|
|||||||
cx,
|
cx,
|
||||||
AS_PTR_CAST_MUT,
|
AS_PTR_CAST_MUT,
|
||||||
expr.span,
|
expr.span,
|
||||||
&format!("casting the result of `as_ptr` to *{ptrty}"),
|
&format!("casting the result of `as_ptr` to *mut {ptrty}"),
|
||||||
"replace with",
|
"replace with",
|
||||||
format!("{recv}.as_mut_ptr()"),
|
format!("{recv}.as_mut_ptr()"),
|
||||||
applicability,
|
applicability,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user