Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-def/src/expr_store.rs')
-rw-r--r--crates/hir-def/src/expr_store.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir-def/src/expr_store.rs b/crates/hir-def/src/expr_store.rs
index dec911f716..7897d22ca0 100644
--- a/crates/hir-def/src/expr_store.rs
+++ b/crates/hir-def/src/expr_store.rs
@@ -874,7 +874,7 @@ impl ExpressionStore {
visitor.on_anon_const_expr(*len);
}
TypeRef::Fn(fn_type) => {
- let FnType { params, is_varargs: _, is_unsafe: _, abi: _ } = &**fn_type;
+ let FnType { params, is_varargs: _, is_unsafe: _, abi: _, binder: _ } = &**fn_type;
params.iter().for_each(|(_, param_ty)| visitor.on_type(*param_ty));
}
TypeRef::ImplTrait(bounds) | TypeRef::DynTrait(bounds) => {