Auto merge of #12320 - NotWearingPants:patch-1, r=Veykril

Hide closure ret hints if ret type is specified

Fixes #12319
This commit is contained in:
bors 2022-05-19 23:57:37 +00:00
commit 44be090f2e

View File

@ -463,6 +463,10 @@ fn closure_ret_hints(
return None;
}
if closure.ret_type().is_some() {
return None;
}
let param_list = match closure.body() {
Some(ast::Expr::BlockExpr(_)) => closure.param_list()?,
_ => return None,