Replace old Ident::parse_any
diff --git a/src/expr.rs b/src/expr.rs
index f53c916..d03d63f 100644
--- a/src/expr.rs
+++ b/src/expr.rs
@@ -2645,7 +2645,7 @@
             mutability: input.parse()?,
             ident: {
                 let ident = if input.peek(Ident) || input.peek(Token![self]) {
-                    input.call(Ident::parse_any2)?
+                    input.call(Ident::parse_any)?
                 } else {
                     return Err(input.error("expected identifier or `self`"));
                 };