Remove some P-s

This commit is contained in:
Dániel Buga 2021-02-20 10:51:26 +01:00
parent b75baad5c3
commit 10f234240d
4 changed files with 6 additions and 7 deletions

View file

@ -225,7 +225,7 @@ impl<'a> Parser<'a> {
return Err(e);
}
(Ident::invalid(), ItemKind::Use(P(tree)))
(Ident::invalid(), ItemKind::Use(tree))
} else if self.check_fn_front_matter() {
// FUNCTION ITEM
let (ident, sig, generics, body) = self.parse_fn(attrs, req_name, lo)?;