Skip to content

Commit 1cbda63

Browse files
committed
Stabilize Literal::byte_character
1 parent 11c572a commit 1cbda63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proc_macro/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1360,7 +1360,7 @@ impl Literal {
13601360
}
13611361

13621362
/// Byte character literal.
1363-
#[unstable(feature = "proc_macro_byte_character", issue = "115268")]
1363+
#[stable(feature = "proc_macro_byte_character", since = "CURRENT_RUSTC_VERSION")]
13641364
pub fn byte_character(byte: u8) -> Literal {
13651365
let string = [byte].escape_ascii().to_string();
13661366
Literal::new(bridge::LitKind::Byte, &string, None)

0 commit comments

Comments
 (0)