@@ -729,7 +729,7 @@ impl char {
729729 /// '𝕊'.encode_utf16(&mut b);
730730 /// ```
731731 #[ 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 " ) ]
733733 #[ inline]
734734 pub const fn encode_utf16 ( self , dst : & mut [ u16 ] ) -> & mut [ u16 ] {
735735 encode_utf16_raw ( self as u32 , dst)
@@ -1299,7 +1299,7 @@ impl char {
12991299 ///
13001300 /// [`to_ascii_uppercase()`]: #method.to_ascii_uppercase
13011301 #[ 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 " ) ]
13031303 #[ inline]
13041304 pub const fn make_ascii_uppercase ( & mut self ) {
13051305 * self = self . to_ascii_uppercase ( ) ;
@@ -1325,7 +1325,7 @@ impl char {
13251325 ///
13261326 /// [`to_ascii_lowercase()`]: #method.to_ascii_lowercase
13271327 #[ 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 " ) ]
13291329 #[ inline]
13301330 pub const fn make_ascii_lowercase ( & mut self ) {
13311331 * self = self . to_ascii_lowercase ( ) ;
@@ -1838,7 +1838,7 @@ pub const fn encode_utf8_raw(code: u32, dst: &mut [u8]) -> &mut [u8] {
18381838#[ unstable( feature = "char_internals" , reason = "exposed only for libstd" , issue = "none" ) ]
18391839#[ cfg_attr(
18401840 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 " )
18421842) ]
18431843#[ doc( hidden) ]
18441844#[ inline]
0 commit comments