Skip to content

Commit 607d8a2

Browse files
Small macro fix
1 parent 6a16ec5 commit 607d8a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ide_completion/src/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ impl<'a> CompletionContext<'a> {
381381
let def = self.sema.to_def(&it);
382382
(def.map(|def| def.ret_type(self.db)), None)
383383
},
384-
ast::Stmt(_) => (None, None),
384+
ast::Stmt(_it) => (None, None),
385385
_ => {
386386
match node.parent() {
387387
Some(n) => {

0 commit comments

Comments
 (0)