@@ -81,7 +81,7 @@ impl<'a> Location<'a> {
8181 /// ```
8282 #[ must_use]
8383 #[ stable( feature = "track_caller" , since = "1.46.0" ) ]
84- #[ rustc_const_unstable ( feature = "const_caller_location" , issue = "76156 " ) ]
84+ #[ rustc_const_stable ( feature = "const_caller_location" , since = "CURRENT_RUSTC_VERSION " ) ]
8585 #[ track_caller]
8686 #[ inline]
8787 pub const fn caller ( ) -> & ' static Location < ' static > {
@@ -123,7 +123,7 @@ impl<'a> Location<'a> {
123123 /// ```
124124 #[ must_use]
125125 #[ stable( feature = "panic_hooks" , since = "1.10.0" ) ]
126- #[ rustc_const_unstable ( feature = "const_location_fields" , issue = "102911 " ) ]
126+ #[ rustc_const_stable ( feature = "const_location_fields" , since = "CURRENT_RUSTC_VERSION " ) ]
127127 #[ inline]
128128 pub const fn file ( & self ) -> & str {
129129 self . file
@@ -148,7 +148,7 @@ impl<'a> Location<'a> {
148148 /// ```
149149 #[ must_use]
150150 #[ stable( feature = "panic_hooks" , since = "1.10.0" ) ]
151- #[ rustc_const_unstable ( feature = "const_location_fields" , issue = "102911 " ) ]
151+ #[ rustc_const_stable ( feature = "const_location_fields" , since = "CURRENT_RUSTC_VERSION " ) ]
152152 #[ inline]
153153 pub const fn line ( & self ) -> u32 {
154154 self . line
@@ -173,7 +173,7 @@ impl<'a> Location<'a> {
173173 /// ```
174174 #[ must_use]
175175 #[ stable( feature = "panic_col" , since = "1.25.0" ) ]
176- #[ rustc_const_unstable ( feature = "const_location_fields" , issue = "102911 " ) ]
176+ #[ rustc_const_stable ( feature = "const_location_fields" , since = "CURRENT_RUSTC_VERSION " ) ]
177177 #[ inline]
178178 pub const fn column ( & self ) -> u32 {
179179 self . col
0 commit comments