diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2018-10-01 10:44:19 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2018-10-01 12:15:35 -0700 |
| commit | 3ced475360795b46c0551d55a02b7d2504bdd526 (patch) | |
| tree | 79d1ca467cae646366ca2375995e6f3508da7ad9 | |
| parent | b871293cfdccbac795408a2bfc5110a54416c84d (diff) | |
The `proc_macro_raw_ident` feature is now at #54723
| -rw-r--r-- | src/libproc_macro/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libproc_macro/lib.rs b/src/libproc_macro/lib.rs index 41ef72049e3..5b3cb3562d1 100644 --- a/src/libproc_macro/lib.rs +++ b/src/libproc_macro/lib.rs @@ -881,7 +881,7 @@ impl Ident { } /// Same as `Ident::new`, but creates a raw identifier (`r#ident`). - #[unstable(feature = "proc_macro_raw_ident", issue = "38356")] + #[unstable(feature = "proc_macro_raw_ident", issue = "54723")] pub fn new_raw(string: &str, span: Span) -> Ident { if !Ident::is_valid(string) { panic!("`{:?}` is not a valid identifier", string) |
