bump const type id stabilization to 1.46.0
This commit is contained in:
parent
cac16c9793
commit
e3856616ee
@ -435,7 +435,7 @@ impl TypeId {
|
||||
/// assert_eq!(is_string(&"cookie monster".to_string()), true);
|
||||
/// ```
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
#[rustc_const_stable(feature = "const_type_id", since = "1.45.0")]
|
||||
#[rustc_const_stable(feature = "const_type_id", since = "1.46.0")]
|
||||
pub const fn of<T: ?Sized + 'static>() -> TypeId {
|
||||
TypeId { t: intrinsics::type_id::<T>() }
|
||||
}
|
||||
|
@ -1024,7 +1024,7 @@ extern "rust-intrinsic" {
|
||||
///
|
||||
/// The stabilized version of this intrinsic is
|
||||
/// [`std::any::TypeId::of`](../../std/any/struct.TypeId.html#method.of)
|
||||
#[rustc_const_stable(feature = "const_type_id", since = "1.45.0")]
|
||||
#[rustc_const_stable(feature = "const_type_id", since = "1.46.0")]
|
||||
pub fn type_id<T: ?Sized + 'static>() -> u64;
|
||||
|
||||
/// A guard for unsafe functions that cannot ever be executed if `T` is uninhabited:
|
||||
|
Loading…
Reference in New Issue
Block a user