diff options
| author | Ashley Mannix <ashleymannix@live.com.au> | 2020-09-24 09:00:04 +1000 |
|---|---|---|
| committer | Ashley Mannix <ashleymannix@live.com.au> | 2020-09-24 09:00:04 +1000 |
| commit | 0e2db577546ee52901c9d350aaa96f6ba700d9ff (patch) | |
| tree | 794c5365cd89da936ffcb0b1d82ec7fefb502036 | |
| parent | 9b2c8d866ebe746207472ba5da7c1fd79c856faa (diff) | |
| download | rust-0e2db577546ee52901c9d350aaa96f6ba700d9ff.tar.gz rust-0e2db577546ee52901c9d350aaa96f6ba700d9ff.zip | |
update tracking issue for const_type_id
| -rw-r--r-- | library/core/src/any.rs | 2 | ||||
| -rw-r--r-- | library/core/src/intrinsics.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/any.rs b/library/core/src/any.rs index 88ff2a632fd..d1951fbbf10 100644 --- a/library/core/src/any.rs +++ b/library/core/src/any.rs @@ -435,7 +435,7 @@ impl TypeId { /// assert_eq!(is_string(&"cookie monster".to_string()), true); /// ``` #[stable(feature = "rust1", since = "1.0.0")] - #[rustc_const_unstable(feature = "const_type_id", issue = "63084")] + #[rustc_const_unstable(feature = "const_type_id", issue = "77125")] pub const fn of<T: ?Sized + 'static>() -> TypeId { TypeId { t: intrinsics::type_id::<T>() } } diff --git a/library/core/src/intrinsics.rs b/library/core/src/intrinsics.rs index b8c0519f659..bcbb760021e 100644 --- a/library/core/src/intrinsics.rs +++ b/library/core/src/intrinsics.rs @@ -807,7 +807,7 @@ extern "rust-intrinsic" { /// crate it is invoked in. /// /// The stabilized version of this intrinsic is [`crate::any::TypeId::of`]. - #[rustc_const_unstable(feature = "const_type_id", issue = "63084")] + #[rustc_const_unstable(feature = "const_type_id", issue = "77125")] pub fn type_id<T: ?Sized + 'static>() -> u64; /// A guard for unsafe functions that cannot ever be executed if `T` is uninhabited: |
