From 14be934edbc04d935eb17f47a0d318035ec914e8 Mon Sep 17 00:00:00 2001 From: Adnan Ademovic Date: Thu, 7 Mar 2019 22:07:47 +0100 Subject: [PATCH] Stabilize Ident::new_raw --- src/libproc_macro/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libproc_macro/lib.rs b/src/libproc_macro/lib.rs index 6c061189d00d7..d9b65afc61271 100644 --- a/src/libproc_macro/lib.rs +++ b/src/libproc_macro/lib.rs @@ -812,7 +812,7 @@ impl Ident { } /// Same as `Ident::new`, but creates a raw identifier (`r#ident`). - #[unstable(feature = "proc_macro_raw_ident", issue = "54723")] + #[stable(feature = "proc_macro_raw_ident", since = "1.34.0")] pub fn new_raw(string: &str, span: Span) -> Ident { Ident(bridge::client::Ident::new(string, span.0, true)) }