about summary refs log tree commit diff
path: root/library/core/src/panic
diff options
context:
space:
mode:
authorwoppopo <woppopo@protonmail.com>2022-10-11 06:40:37 +0000
committerwoppopo <woppopo@protonmail.com>2022-10-11 06:40:37 +0000
commita53e3acca914a1f6897c451ba35636ee1f72c0e7 (patch)
tree005987c2bc7d579ff55df427dd8497dfa16ab6d8 /library/core/src/panic
parentf0b8167a4e7150aa77a3da8072b1b019f2c52d5d (diff)
Change tracking issue from #76156 to #102911
Diffstat (limited to 'library/core/src/panic')
-rw-r--r--library/core/src/panic/location.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/core/src/panic/location.rs b/library/core/src/panic/location.rs
index 26a41036556..6dcf23dde87 100644
--- a/library/core/src/panic/location.rs
+++ b/library/core/src/panic/location.rs
@@ -123,7 +123,7 @@ impl<'a> Location<'a> {
     /// ```
     #[must_use]
     #[stable(feature = "panic_hooks", since = "1.10.0")]
-    #[rustc_const_unstable(feature = "const_caller_location", issue = "76156")]
+    #[rustc_const_unstable(feature = "const_location_fields", issue = "102911")]
     #[inline]
     pub const fn file(&self) -> &str {
         self.file
@@ -148,7 +148,7 @@ impl<'a> Location<'a> {
     /// ```
     #[must_use]
     #[stable(feature = "panic_hooks", since = "1.10.0")]
-    #[rustc_const_unstable(feature = "const_caller_location", issue = "76156")]
+    #[rustc_const_unstable(feature = "const_location_fields", issue = "102911")]
     #[inline]
     pub const fn line(&self) -> u32 {
         self.line
@@ -173,7 +173,7 @@ impl<'a> Location<'a> {
     /// ```
     #[must_use]
     #[stable(feature = "panic_col", since = "1.25.0")]
-    #[rustc_const_unstable(feature = "const_caller_location", issue = "76156")]
+    #[rustc_const_unstable(feature = "const_location_fields", issue = "102911")]
     #[inline]
     pub const fn column(&self) -> u32 {
         self.col