@@ -565,7 +565,7 @@ pub unsafe fn drop_in_place<T: ?Sized>(to_drop: *mut T) {
565565#[ rustc_allow_const_fn_unstable( ptr_metadata) ]  
566566#[ rustc_diagnostic_item = "ptr_null" ]  
567567pub  const  fn  null < T :  ?Sized  + Thin > ( )  -> * const  T  { 
568-  from_raw_parts ( without_provenance ( 0 ) ,  ( ) ) 
568+  from_raw_parts ( without_provenance :: < ( ) > ( 0 ) ,  ( ) ) 
569569} 
570570
571571/// Creates a null mutable raw pointer. 
@@ -591,7 +591,7 @@ pub const fn null<T: ?Sized + Thin>() -> *const T {
591591#[ rustc_allow_const_fn_unstable( ptr_metadata) ]  
592592#[ rustc_diagnostic_item = "ptr_null_mut" ]  
593593pub  const  fn  null_mut < T :  ?Sized  + Thin > ( )  -> * mut  T  { 
594-  from_raw_parts_mut ( without_provenance_mut ( 0 ) ,  ( ) ) 
594+  from_raw_parts_mut ( without_provenance_mut :: < ( ) > ( 0 ) ,  ( ) ) 
595595} 
596596
597597/// Creates a pointer with the given address and no provenance. 
@@ -835,7 +835,7 @@ pub const fn from_mut<T: ?Sized>(r: &mut T) -> *mut T {
835835#[ rustc_allow_const_fn_unstable( ptr_metadata) ]  
836836#[ rustc_diagnostic_item = "ptr_slice_from_raw_parts" ]  
837837pub  const  fn  slice_from_raw_parts < T > ( data :  * const  T ,  len :  usize )  -> * const  [ T ]  { 
838-  intrinsics :: aggregate_raw_ptr ( data,  len) 
838+  from_raw_parts ( data,  len) 
839839} 
840840
841841/// Forms a raw mutable slice from a pointer and a length. 
@@ -881,7 +881,7 @@ pub const fn slice_from_raw_parts<T>(data: *const T, len: usize) -> *const [T] {
881881#[ rustc_const_unstable( feature = "const_slice_from_raw_parts_mut" ,  issue = "67456" ) ]  
882882#[ rustc_diagnostic_item = "ptr_slice_from_raw_parts_mut" ]  
883883pub  const  fn  slice_from_raw_parts_mut < T > ( data :  * mut  T ,  len :  usize )  -> * mut  [ T ]  { 
884-  intrinsics :: aggregate_raw_ptr ( data,  len) 
884+  from_raw_parts_mut ( data,  len) 
885885} 
886886
887887/// Swaps the values at two mutable locations of the same type, without 
0 commit comments