Skip to content

Commit ae66171

Browse files
committed
Auto merge of #68069 - JohnTitor:fix-closure-ice, r=matthewjasper
Attempt to fix ICE #68025 Fixes #68025
2 parents f5abfb1 + 0017f49 commit ae66171

File tree

2 files changed

+13
-59
lines changed

2 files changed

+13
-59
lines changed

src/librustc_typeck/expr_use_visitor.rs

+1-59
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
//! `ExprUseVisitor` determines how expressions are being used.
44
55
pub use self::ConsumeMode::*;
6-
use self::OverloadedCallType::*;
76

87
// Export these here so that Clippy can use them.
98
pub use mc::{Place, PlaceBase, Projection};
@@ -48,35 +47,6 @@ pub enum MutateMode {
4847
WriteAndRead, // x += y
4948
}
5049

51-
#[derive(Copy, Clone)]
52-
enum OverloadedCallType {
53-
FnOverloadedCall,
54-
FnMutOverloadedCall,
55-
FnOnceOverloadedCall,
56-
}
57-
58-
impl OverloadedCallType {
59-
fn from_trait_id(tcx: TyCtxt<'_>, trait_id: DefId) -> OverloadedCallType {
60-
for &(maybe_function_trait, overloaded_call_type) in &[
61-
(tcx.lang_items().fn_once_trait(), FnOnceOverloadedCall),
62-
(tcx.lang_items().fn_mut_trait(), FnMutOverloadedCall),
63-
(tcx.lang_items().fn_trait(), FnOverloadedCall),
64-
] {
65-
match maybe_function_trait {
66-
Some(function_trait) if function_trait == trait_id => return overloaded_call_type,
67-
_ => continue,
68-
}
69-
}
70-
71-
bug!("overloaded call didn't map to known function trait")
72-
}
73-
74-
fn from_method_id(tcx: TyCtxt<'_>, method_id: DefId) -> OverloadedCallType {
75-
let method = tcx.associated_item(method_id);
76-
OverloadedCallType::from_trait_id(tcx, method.container.id())
77-
}
78-
}
79-
8050
///////////////////////////////////////////////////////////////////////////
8151
// The ExprUseVisitor type
8252
//
@@ -211,7 +181,7 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
211181

212182
hir::ExprKind::Call(ref callee, ref args) => {
213183
// callee(args)
214-
self.walk_callee(expr, callee);
184+
self.consume_expr(callee);
215185
self.consume_exprs(args);
216186
}
217187

@@ -326,34 +296,6 @@ impl<'a, 'tcx> ExprUseVisitor<'a, 'tcx> {
326296
}
327297
}
328298

329-
fn walk_callee(&mut self, call: &hir::Expr<'_>, callee: &hir::Expr<'_>) {
330-
let callee_ty = return_if_err!(self.mc.expr_ty_adjusted(callee));
331-
debug!("walk_callee: callee={:?} callee_ty={:?}", callee, callee_ty);
332-
match callee_ty.kind {
333-
ty::FnDef(..) | ty::FnPtr(_) => {
334-
self.consume_expr(callee);
335-
}
336-
ty::Error => {}
337-
_ => {
338-
if let Some(def_id) = self.mc.tables.type_dependent_def_id(call.hir_id) {
339-
match OverloadedCallType::from_method_id(self.tcx(), def_id) {
340-
FnMutOverloadedCall => {
341-
self.borrow_expr(callee, ty::MutBorrow);
342-
}
343-
FnOverloadedCall => {
344-
self.borrow_expr(callee, ty::ImmBorrow);
345-
}
346-
FnOnceOverloadedCall => self.consume_expr(callee),
347-
}
348-
} else {
349-
self.tcx()
350-
.sess
351-
.delay_span_bug(call.span, "no type-dependent def for overloaded call");
352-
}
353-
}
354-
}
355-
}
356-
357299
fn walk_stmt(&mut self, stmt: &hir::Stmt<'_>) {
358300
match stmt.kind {
359301
hir::StmtKind::Local(ref local) => {

src/test/ui/closures/issue-68025.rs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// check-pass
2+
3+
fn foo<F, G>(_: G, _: Box<F>)
4+
where
5+
F: Fn(),
6+
G: Fn(Box<F>),
7+
{
8+
}
9+
10+
fn main() {
11+
foo(|f| (*f)(), Box::new(|| {}));
12+
}

0 commit comments

Comments
 (0)