We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Literal::byte_character
1 parent 11c572a commit 1cbda63Copy full SHA for 1cbda63
proc_macro/src/lib.rs
@@ -1360,7 +1360,7 @@ impl Literal {
1360
}
1361
1362
/// Byte character literal.
1363
- #[unstable(feature = "proc_macro_byte_character", issue = "115268")]
+ #[stable(feature = "proc_macro_byte_character", since = "CURRENT_RUSTC_VERSION")]
1364
pub fn byte_character(byte: u8) -> Literal {
1365
let string = [byte].escape_ascii().to_string();
1366
Literal::new(bridge::LitKind::Byte, &string, None)
0 commit comments