Skip to content

Commit 30322ef

Browse files
committed
Auto merge of #42735 - arielb1:generic-closure-fn, r=eddyb
collector: apply param substs to closures cast to fn items Fixes #42718. r? @eddyb beta-nominating because serious ICE in newly-stabilized feature.
2 parents 10d7cb4 + 09219d6 commit 30322ef

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/librustc_trans/collector.rs

+4
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,8 @@ impl<'a, 'tcx> MirVisitor<'tcx> for MirNeighborCollector<'a, 'tcx> {
493493
}
494494
mir::Rvalue::Cast(mir::CastKind::ClosureFnPointer, ref operand, _) => {
495495
let source_ty = operand.ty(self.mir, self.scx.tcx());
496+
let source_ty = self.scx.tcx().trans_apply_param_substs(self.param_substs,
497+
&source_ty);
496498
match source_ty.sty {
497499
ty::TyClosure(def_id, substs) => {
498500
let instance = monomorphize::resolve_closure(
@@ -543,6 +545,8 @@ impl<'a, 'tcx> MirVisitor<'tcx> for MirNeighborCollector<'a, 'tcx> {
543545
block: mir::BasicBlock,
544546
kind: &mir::TerminatorKind<'tcx>,
545547
location: Location) {
548+
debug!("visiting terminator {:?} @ {:?}", kind, location);
549+
546550
let tcx = self.scx.tcx();
547551
match *kind {
548552
mir::TerminatorKind::Call { ref func, .. } => {

src/test/run-pass/closure-to-fn-coercion.rs

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
use std::mem;
12+
1113
const FOO: fn(u8) -> u8 = |v: u8| { v };
1214

1315
const BAR: [fn(&mut u32); 5] = [
@@ -21,6 +23,10 @@ fn func_specific() -> (fn() -> u32) {
2123
|| return 42
2224
}
2325

26+
fn generic<T>(_: T) -> fn() -> usize {
27+
|| mem::size_of::<T>()
28+
}
29+
2430
fn main() {
2531
// Items
2632
assert_eq!(func_specific()(), 42);
@@ -34,4 +40,5 @@ fn main() {
3440
assert_eq!({ BAR[2](&mut a); a }, 3);
3541
assert_eq!({ BAR[3](&mut a); a }, 6);
3642
assert_eq!({ BAR[4](&mut a); a }, 10);
43+
assert_eq!(generic(0i8)(), 1);
3744
}

0 commit comments

Comments
 (0)