mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-11-14 09:46:00 +00:00
Unelide lifetime
This commit is contained in:
parent
3cee0204fd
commit
a058c340ef
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@ impl Parse for Cycle {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Parse for Option {
|
impl Parse for Option {
|
||||||
fn parse(input: ParseStream) -> syn::Result<Self> {
|
fn parse(input: ParseStream<'_>) -> syn::Result<Self> {
|
||||||
let name = input.parse()?;
|
let name = input.parse()?;
|
||||||
input.parse::<Token![=]>()?;
|
input.parse::<Token![=]>()?;
|
||||||
let value = input.parse()?;
|
let value = input.parse()?;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue