@@ -611,14 +611,39 @@ impl<'a, 'tcx> CastCheck<'tcx> {
611
611
} else {
612
612
match self . try_coercion_cast ( fcx) {
613
613
Ok ( ( ) ) => {
614
- if self . expr_ty . is_unsafe_ptr ( ) && self . cast_ty . is_unsafe_ptr ( ) {
615
- // When casting a raw pointer to another raw pointer, we cannot convert the cast into
616
- // a coercion because the pointee types might only differ in regions, which HIR typeck
617
- // cannot distinguish. This would cause us to erroneously discard a cast which will
618
- // lead to a borrowck error like #113257.
619
- // We still did a coercion above to unify inference variables for `ptr as _` casts.
620
- // This does cause us to miss some trivial casts in the trival cast lint.
621
- debug ! ( " -> PointerCast" ) ;
614
+ if let ty:: RawPtr ( src_pointee) = self . expr_ty . kind ( )
615
+ && let ty:: RawPtr ( tgt_pointee) = self . cast_ty . kind ( )
616
+ {
617
+ if let Ok ( Some ( src_kind) ) = fcx. pointer_kind ( src_pointee. ty , self . expr_span )
618
+ && let Ok ( Some ( tgt_kind) ) =
619
+ fcx. pointer_kind ( tgt_pointee. ty , self . cast_span )
620
+ {
621
+ match ( src_kind, tgt_kind) {
622
+ // When casting a raw pointer to another raw pointer, we cannot convert the cast into
623
+ // a coercion because the pointee types might only differ in regions, which HIR typeck
624
+ // cannot distinguish. This would cause us to erroneously discard a cast which will
625
+ // lead to a borrowck error like #113257.
626
+ // We still did a coercion above to unify inference variables for `ptr as _` casts.
627
+ // This does cause us to miss some trivial casts in the trivial cast lint.
628
+ ( PointerKind :: Thin , PointerKind :: Thin )
629
+ | ( PointerKind :: Length , PointerKind :: Length ) => {
630
+ debug ! ( " -> PointerCast" ) ;
631
+ }
632
+
633
+ // If we are not casting pointers to sized types or slice-ish DSTs
634
+ // (handled above), we need to make a coercion cast. This prevents
635
+ // casts like `*const dyn Trait<'a> -> *const dyn Trait<'b>` which
636
+ // are unsound.
637
+ //
638
+ // See <https://github.com/rust-lang/rust/issues/120217>
639
+ ( _, _) => {
640
+ debug ! ( " -> CoercionCast" ) ;
641
+ fcx. typeck_results
642
+ . borrow_mut ( )
643
+ . set_coercion_cast ( self . expr . hir_id . local_id ) ;
644
+ }
645
+ }
646
+ }
622
647
} else {
623
648
self . trivial_cast_lint ( fcx) ;
624
649
debug ! ( " -> CoercionCast" ) ;
0 commit comments