Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_expand/src/eager.rs')
| -rw-r--r-- | crates/hir_expand/src/eager.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_expand/src/eager.rs b/crates/hir_expand/src/eager.rs index 052f1bf20e..81a40185bc 100644 --- a/crates/hir_expand/src/eager.rs +++ b/crates/hir_expand/src/eager.rs @@ -107,7 +107,7 @@ pub fn expand_eager_macro( mut diagnostic_sink: &mut dyn FnMut(mbe::ExpandError), ) -> Result<MacroCallId, ErrorEmitted> { let parsed_args = diagnostic_sink.option_with( - || Some(mbe::syntax_node_to_token_tree(¯o_call.value.token_tree()?.syntax()).0), + || Some(mbe::syntax_node_to_token_tree(macro_call.value.token_tree()?.syntax()).0), || err("malformed macro invocation"), )?; |