fixed inline_local_variable bug

This commit is contained in:
Tomáš 2020-01-25 21:07:21 +01:00
parent adda6dbdf8
commit ec6a7f0710

View file

@ -47,6 +47,9 @@ pub(crate) fn inline_local_variable(ctx: AssistCtx<impl HirDatabase>) -> Option<
};
let analyzer = ctx.source_analyzer(bind_pat.syntax(), None);
let refs = analyzer.find_all_refs(&bind_pat);
if refs.is_empty() {
return None;
};
let mut wrap_in_parens = vec![true; refs.len()];
@ -645,4 +648,16 @@ fn foo() {
}",
);
}
#[test]
fn test_not_applicable_if_variable_unused() {
check_assist_not_applicable(
inline_local_variable,
"
fn foo() {
let <|>a = 0;
}
",
)
}
}