Skip to content

Commit

Permalink
internal: move strip_references into dyn trait check
Browse files Browse the repository at this point in the history
  • Loading branch information
Young-Flash committed Feb 26, 2024
1 parent b132190 commit fd0cddf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/hir-ty/src/diagnostics/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ impl ExprValidator {
});
}

let receiver_ty = self.infer[*receiver].strip_references().clone();
let receiver_ty = self.infer[*receiver].clone();
checker.prev_receiver_ty = Some(receiver_ty);
}
}
Expand Down Expand Up @@ -443,7 +443,7 @@ impl FilterMapNextChecker {
if *function_id == self.next_function_id? {
if let Some(prev_filter_map_expr_id) = self.prev_filter_map_expr_id {
let is_dyn_trait =
self.prev_receiver_ty.clone().map_or(false, |it| it.dyn_trait().is_some());
self.prev_receiver_ty.as_ref().map_or(false, |it| it.strip_references().dyn_trait().is_some());
if *receiver_expr_id == prev_filter_map_expr_id && !is_dyn_trait {
return Some(());
}
Expand Down

0 comments on commit fd0cddf

Please sign in to comment.