Skip to content

Commit 85d61b0

Browse files
committed
wrap fn sig binders in fn ptr
1 parent c599761 commit 85d61b0

File tree

3 files changed

+13
-28
lines changed

3 files changed

+13
-28
lines changed

compiler/rustc_hir_analysis/src/check/mod.rs

+7-10
Original file line numberDiff line numberDiff line change
@@ -568,18 +568,15 @@ pub fn check_function_signature<'tcx>(
568568
let infcx = &tcx.infer_ctxt().build();
569569
let ocx = ObligationCtxt::new(infcx);
570570

571-
let unnormalized_actual_sig = infcx.instantiate_binder_with_fresh_vars(
572-
cause.span,
573-
infer::HigherRankedType,
574-
tcx.fn_sig(fn_id).instantiate_identity(),
575-
);
571+
let actual_sig = tcx.fn_sig(fn_id).instantiate_identity();
576572

577573
let norm_cause = ObligationCause::misc(cause.span, local_id);
578-
let actual_sig = ocx.normalize(&norm_cause, param_env, unnormalized_actual_sig);
574+
let actual_sig = ocx.normalize(&norm_cause, param_env, actual_sig);
579575

580-
let expected_sig = tcx.liberate_late_bound_regions(fn_id, expected_sig);
576+
let expected_ty = Ty::new_fn_ptr(tcx, expected_sig);
577+
let actual_ty = Ty::new_fn_ptr(tcx, actual_sig);
581578

582-
match ocx.eq(&cause, param_env, expected_sig, actual_sig) {
579+
match ocx.eq(&cause, param_env, expected_ty, actual_ty) {
583580
Ok(()) => {
584581
let errors = ocx.select_all_or_error();
585582
if !errors.is_empty() {
@@ -599,8 +596,8 @@ pub fn check_function_signature<'tcx>(
599596
&cause,
600597
None,
601598
Some(infer::ValuePairs::Sigs(ExpectedFound {
602-
expected: expected_sig,
603-
found: actual_sig,
599+
expected: tcx.liberate_late_bound_regions(fn_id, expected_sig),
600+
found: tcx.liberate_late_bound_regions(fn_id, actual_sig),
604601
})),
605602
err,
606603
false,

tests/ui/panic-handler/panic-handler-bad-signature-2.stderr

+3-9
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,10 @@ error[E0308]: `#[panic_handler]` function has wrong type
22
--> $DIR/panic-handler-bad-signature-2.rs:9:1
33
|
44
LL | fn panic(info: &'static PanicInfo) -> !
5-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetime mismatch
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ one type is more general than the other
66
|
7-
= note: expected signature `fn(&PanicInfo<'_>) -> _`
8-
found signature `fn(&'static PanicInfo<'_>) -> _`
9-
note: the anonymous lifetime as defined here...
10-
--> $DIR/panic-handler-bad-signature-2.rs:9:1
11-
|
12-
LL | fn panic(info: &'static PanicInfo) -> !
13-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14-
= note: ...does not necessarily outlive the static lifetime
7+
= note: expected fn pointer `for<'a, 'b> fn(&'a PanicInfo<'b>) -> _`
8+
found fn pointer `for<'a> fn(&'static PanicInfo<'a>) -> _`
159

1610
error: aborting due to previous error
1711

tests/ui/panic-handler/panic-handler-bad-signature-5.stderr

+3-9
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,10 @@ error[E0308]: `#[panic_handler]` function has wrong type
22
--> $DIR/panic-handler-bad-signature-5.rs:9:1
33
|
44
LL | fn panic(info: &PanicInfo<'static>) -> !
5-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetime mismatch
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ one type is more general than the other
66
|
7-
= note: expected signature `fn(&PanicInfo<'_>) -> _`
8-
found signature `fn(&PanicInfo<'static>) -> _`
9-
note: the anonymous lifetime as defined here...
10-
--> $DIR/panic-handler-bad-signature-5.rs:9:1
11-
|
12-
LL | fn panic(info: &PanicInfo<'static>) -> !
13-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14-
= note: ...does not necessarily outlive the static lifetime
7+
= note: expected fn pointer `for<'a, 'b> fn(&'a PanicInfo<'b>) -> _`
8+
found fn pointer `for<'a> fn(&'a PanicInfo<'static>) -> _`
159

1610
error: aborting due to previous error
1711

0 commit comments

Comments
 (0)