We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36ed4aa commit ce6a066Copy full SHA for ce6a066
src/tools/rust-analyzer/crates/query-group-macro/src/lib.rs
@@ -159,7 +159,7 @@ impl Parse for Cycle {
159
}
160
161
impl Parse for Option {
162
- fn parse(input: ParseStream) -> syn::Result<Self> {
+ fn parse(input: ParseStream<'_>) -> syn::Result<Self> {
163
let name = input.parse()?;
164
input.parse::<Token![=]>()?;
165
let value = input.parse()?;
0 commit comments