@@ -729,7 +729,7 @@ impl char {
729
729
/// '𝕊'.encode_utf16(&mut b);
730
730
/// ```
731
731
#[ stable( feature = "unicode_encode_char" , since = "1.15.0" ) ]
732
- #[ rustc_const_stable( feature = "const_char_encode_utf16" , since = "CURRENT_RUSTC_VERSION " ) ]
732
+ #[ rustc_const_stable( feature = "const_char_encode_utf16" , since = "1.84.0 " ) ]
733
733
#[ inline]
734
734
pub const fn encode_utf16 ( self , dst : & mut [ u16 ] ) -> & mut [ u16 ] {
735
735
encode_utf16_raw ( self as u32 , dst)
@@ -1299,7 +1299,7 @@ impl char {
1299
1299
///
1300
1300
/// [`to_ascii_uppercase()`]: #method.to_ascii_uppercase
1301
1301
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
1302
- #[ rustc_const_stable( feature = "const_make_ascii" , since = "CURRENT_RUSTC_VERSION " ) ]
1302
+ #[ rustc_const_stable( feature = "const_make_ascii" , since = "1.84.0 " ) ]
1303
1303
#[ inline]
1304
1304
pub const fn make_ascii_uppercase ( & mut self ) {
1305
1305
* self = self . to_ascii_uppercase ( ) ;
@@ -1325,7 +1325,7 @@ impl char {
1325
1325
///
1326
1326
/// [`to_ascii_lowercase()`]: #method.to_ascii_lowercase
1327
1327
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
1328
- #[ rustc_const_stable( feature = "const_make_ascii" , since = "CURRENT_RUSTC_VERSION " ) ]
1328
+ #[ rustc_const_stable( feature = "const_make_ascii" , since = "1.84.0 " ) ]
1329
1329
#[ inline]
1330
1330
pub const fn make_ascii_lowercase ( & mut self ) {
1331
1331
* self = self . to_ascii_lowercase ( ) ;
@@ -1838,7 +1838,7 @@ pub const fn encode_utf8_raw(code: u32, dst: &mut [u8]) -> &mut [u8] {
1838
1838
#[ unstable( feature = "char_internals" , reason = "exposed only for libstd" , issue = "none" ) ]
1839
1839
#[ cfg_attr(
1840
1840
bootstrap,
1841
- rustc_const_stable( feature = "const_char_encode_utf16" , since = "CURRENT_RUSTC_VERSION " )
1841
+ rustc_const_stable( feature = "const_char_encode_utf16" , since = "1.84.0 " )
1842
1842
) ]
1843
1843
#[ doc( hidden) ]
1844
1844
#[ inline]
0 commit comments