Rollup merge of #101753 - oli-obk:tait_closure_args, r=compiler-errors
Prefer explict closure sig types over expected ones fixes #100800 Previously we only checked that given closure arguments are equal to expected closure arguments, but now we choose the given closure arguments for the signature that is used when type checking the closure body, and keep the other signature for the type of the closure as seen outside of it.
This commit is contained in:
commit
edf9e5eb63
7 changed files with 87 additions and 30 deletions
|
@ -30,7 +30,12 @@ struct ExpectedSig<'tcx> {
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ClosureSignatures<'tcx> {
|
struct ClosureSignatures<'tcx> {
|
||||||
|
/// The signature users of the closure see.
|
||||||
bound_sig: ty::PolyFnSig<'tcx>,
|
bound_sig: ty::PolyFnSig<'tcx>,
|
||||||
|
/// The signature within the function body.
|
||||||
|
/// This mostly differs in the sense that lifetimes are now early bound and any
|
||||||
|
/// opaque types from the signature expectation are overriden in case there are
|
||||||
|
/// explicit hidden types written by the user in the closure signature.
|
||||||
liberated_sig: ty::FnSig<'tcx>,
|
liberated_sig: ty::FnSig<'tcx>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -444,18 +449,16 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
||||||
// Along the way, it also writes out entries for types that the user
|
// Along the way, it also writes out entries for types that the user
|
||||||
// wrote into our typeck results, which are then later used by the privacy
|
// wrote into our typeck results, which are then later used by the privacy
|
||||||
// check.
|
// check.
|
||||||
match self.check_supplied_sig_against_expectation(
|
match self.merge_supplied_sig_with_expectation(
|
||||||
hir_id,
|
hir_id,
|
||||||
expr_def_id,
|
expr_def_id,
|
||||||
decl,
|
decl,
|
||||||
body,
|
body,
|
||||||
&closure_sigs,
|
closure_sigs,
|
||||||
) {
|
) {
|
||||||
Ok(infer_ok) => self.register_infer_ok_obligations(infer_ok),
|
Ok(infer_ok) => self.register_infer_ok_obligations(infer_ok),
|
||||||
Err(_) => return self.sig_of_closure_no_expectation(hir_id, expr_def_id, decl, body),
|
Err(_) => self.sig_of_closure_no_expectation(hir_id, expr_def_id, decl, body),
|
||||||
}
|
}
|
||||||
|
|
||||||
closure_sigs
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn sig_of_closure_with_mismatched_number_of_arguments(
|
fn sig_of_closure_with_mismatched_number_of_arguments(
|
||||||
|
@ -497,21 +500,22 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
||||||
/// Enforce the user's types against the expectation. See
|
/// Enforce the user's types against the expectation. See
|
||||||
/// `sig_of_closure_with_expectation` for details on the overall
|
/// `sig_of_closure_with_expectation` for details on the overall
|
||||||
/// strategy.
|
/// strategy.
|
||||||
fn check_supplied_sig_against_expectation(
|
#[instrument(level = "debug", skip(self, hir_id, expr_def_id, decl, body, expected_sigs))]
|
||||||
|
fn merge_supplied_sig_with_expectation(
|
||||||
&self,
|
&self,
|
||||||
hir_id: hir::HirId,
|
hir_id: hir::HirId,
|
||||||
expr_def_id: DefId,
|
expr_def_id: DefId,
|
||||||
decl: &hir::FnDecl<'_>,
|
decl: &hir::FnDecl<'_>,
|
||||||
body: &hir::Body<'_>,
|
body: &hir::Body<'_>,
|
||||||
expected_sigs: &ClosureSignatures<'tcx>,
|
mut expected_sigs: ClosureSignatures<'tcx>,
|
||||||
) -> InferResult<'tcx, ()> {
|
) -> InferResult<'tcx, ClosureSignatures<'tcx>> {
|
||||||
// Get the signature S that the user gave.
|
// Get the signature S that the user gave.
|
||||||
//
|
//
|
||||||
// (See comment on `sig_of_closure_with_expectation` for the
|
// (See comment on `sig_of_closure_with_expectation` for the
|
||||||
// meaning of these letters.)
|
// meaning of these letters.)
|
||||||
let supplied_sig = self.supplied_sig_of_closure(hir_id, expr_def_id, decl, body);
|
let supplied_sig = self.supplied_sig_of_closure(hir_id, expr_def_id, decl, body);
|
||||||
|
|
||||||
debug!("check_supplied_sig_against_expectation: supplied_sig={:?}", supplied_sig);
|
debug!(?supplied_sig);
|
||||||
|
|
||||||
// FIXME(#45727): As discussed in [this comment][c1], naively
|
// FIXME(#45727): As discussed in [this comment][c1], naively
|
||||||
// forcing equality here actually results in suboptimal error
|
// forcing equality here actually results in suboptimal error
|
||||||
|
@ -529,23 +533,27 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
||||||
// [c2]: https://github.com/rust-lang/rust/pull/45072#issuecomment-341096796
|
// [c2]: https://github.com/rust-lang/rust/pull/45072#issuecomment-341096796
|
||||||
self.commit_if_ok(|_| {
|
self.commit_if_ok(|_| {
|
||||||
let mut all_obligations = vec![];
|
let mut all_obligations = vec![];
|
||||||
|
let inputs: Vec<_> = iter::zip(
|
||||||
|
decl.inputs,
|
||||||
|
supplied_sig.inputs().skip_binder(), // binder moved to (*) below
|
||||||
|
)
|
||||||
|
.map(|(hir_ty, &supplied_ty)| {
|
||||||
|
// Instantiate (this part of..) S to S', i.e., with fresh variables.
|
||||||
|
self.replace_bound_vars_with_fresh_vars(
|
||||||
|
hir_ty.span,
|
||||||
|
LateBoundRegionConversionTime::FnCall,
|
||||||
|
// (*) binder moved to here
|
||||||
|
supplied_sig.inputs().rebind(supplied_ty),
|
||||||
|
)
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
// The liberated version of this signature should be a subtype
|
// The liberated version of this signature should be a subtype
|
||||||
// of the liberated form of the expectation.
|
// of the liberated form of the expectation.
|
||||||
for ((hir_ty, &supplied_ty), expected_ty) in iter::zip(
|
for ((hir_ty, &supplied_ty), expected_ty) in iter::zip(
|
||||||
iter::zip(
|
iter::zip(decl.inputs, &inputs),
|
||||||
decl.inputs,
|
|
||||||
supplied_sig.inputs().skip_binder(), // binder moved to (*) below
|
|
||||||
),
|
|
||||||
expected_sigs.liberated_sig.inputs(), // `liberated_sig` is E'.
|
expected_sigs.liberated_sig.inputs(), // `liberated_sig` is E'.
|
||||||
) {
|
) {
|
||||||
// Instantiate (this part of..) S to S', i.e., with fresh variables.
|
|
||||||
let supplied_ty = self.replace_bound_vars_with_fresh_vars(
|
|
||||||
hir_ty.span,
|
|
||||||
LateBoundRegionConversionTime::FnCall,
|
|
||||||
supplied_sig.inputs().rebind(supplied_ty),
|
|
||||||
); // recreated from (*) above
|
|
||||||
|
|
||||||
// Check that E' = S'.
|
// Check that E' = S'.
|
||||||
let cause = self.misc(hir_ty.span);
|
let cause = self.misc(hir_ty.span);
|
||||||
let InferOk { value: (), obligations } =
|
let InferOk { value: (), obligations } =
|
||||||
|
@ -564,7 +572,17 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
||||||
.eq(expected_sigs.liberated_sig.output(), supplied_output_ty)?;
|
.eq(expected_sigs.liberated_sig.output(), supplied_output_ty)?;
|
||||||
all_obligations.extend(obligations);
|
all_obligations.extend(obligations);
|
||||||
|
|
||||||
Ok(InferOk { value: (), obligations: all_obligations })
|
let inputs = inputs.into_iter().map(|ty| self.resolve_vars_if_possible(ty));
|
||||||
|
|
||||||
|
expected_sigs.liberated_sig = self.tcx.mk_fn_sig(
|
||||||
|
inputs,
|
||||||
|
supplied_output_ty,
|
||||||
|
expected_sigs.liberated_sig.c_variadic,
|
||||||
|
hir::Unsafety::Normal,
|
||||||
|
Abi::RustCall,
|
||||||
|
);
|
||||||
|
|
||||||
|
Ok(InferOk { value: expected_sigs, obligations: all_obligations })
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ fn main::{closure#0}(_1: &[closure@main::{closure#0}], _2: &i32) -> &i32 {
|
||||||
StorageLive(_3); // scope 0 at $DIR/retag.rs:+1:13: +1:15
|
StorageLive(_3); // scope 0 at $DIR/retag.rs:+1:13: +1:15
|
||||||
_3 = _2; // scope 0 at $DIR/retag.rs:+1:18: +1:19
|
_3 = _2; // scope 0 at $DIR/retag.rs:+1:18: +1:19
|
||||||
Retag(_3); // scope 0 at $DIR/retag.rs:+1:18: +1:19
|
Retag(_3); // scope 0 at $DIR/retag.rs:+1:18: +1:19
|
||||||
_0 = _2; // scope 1 at $DIR/retag.rs:+2:9: +2:10
|
_0 = &(*_2); // scope 1 at $DIR/retag.rs:+2:9: +2:10
|
||||||
Retag(_0); // scope 1 at $DIR/retag.rs:+2:9: +2:10
|
Retag(_0); // scope 1 at $DIR/retag.rs:+2:9: +2:10
|
||||||
StorageDead(_3); // scope 0 at $DIR/retag.rs:+3:5: +3:6
|
StorageDead(_3); // scope 0 at $DIR/retag.rs:+3:5: +3:6
|
||||||
return; // scope 0 at $DIR/retag.rs:+3:6: +3:6
|
return; // scope 0 at $DIR/retag.rs:+3:6: +3:6
|
||||||
|
|
|
@ -25,8 +25,8 @@ error[E0308]: mismatched types
|
||||||
LL | with_closure_expecting_fn_with_free_region(|x: fn(&u32), y| {});
|
LL | with_closure_expecting_fn_with_free_region(|x: fn(&u32), y| {});
|
||||||
| ^ one type is more general than the other
|
| ^ one type is more general than the other
|
||||||
|
|
|
|
||||||
= note: expected fn pointer `for<'r> fn(&'r u32)`
|
= note: expected fn pointer `fn(&u32)`
|
||||||
found fn pointer `fn(&u32)`
|
found fn pointer `for<'r> fn(&'r u32)`
|
||||||
|
|
||||||
error[E0308]: mismatched types
|
error[E0308]: mismatched types
|
||||||
--> $DIR/expect-fn-supply-fn.rs:39:50
|
--> $DIR/expect-fn-supply-fn.rs:39:50
|
||||||
|
@ -34,8 +34,8 @@ error[E0308]: mismatched types
|
||||||
LL | with_closure_expecting_fn_with_bound_region(|x: fn(&'x u32), y| {});
|
LL | with_closure_expecting_fn_with_bound_region(|x: fn(&'x u32), y| {});
|
||||||
| ^ one type is more general than the other
|
| ^ one type is more general than the other
|
||||||
|
|
|
|
||||||
= note: expected fn pointer `fn(&'x u32)`
|
= note: expected fn pointer `for<'r> fn(&'r u32)`
|
||||||
found fn pointer `for<'r> fn(&'r u32)`
|
found fn pointer `fn(&u32)`
|
||||||
|
|
||||||
error[E0308]: mismatched types
|
error[E0308]: mismatched types
|
||||||
--> $DIR/expect-fn-supply-fn.rs:48:50
|
--> $DIR/expect-fn-supply-fn.rs:48:50
|
||||||
|
@ -43,8 +43,8 @@ error[E0308]: mismatched types
|
||||||
LL | with_closure_expecting_fn_with_bound_region(|x: Foo<'_>, y| {
|
LL | with_closure_expecting_fn_with_bound_region(|x: Foo<'_>, y| {
|
||||||
| ^ one type is more general than the other
|
| ^ one type is more general than the other
|
||||||
|
|
|
|
||||||
= note: expected fn pointer `fn(&u32)`
|
= note: expected fn pointer `for<'r> fn(&'r u32)`
|
||||||
found fn pointer `for<'r> fn(&'r u32)`
|
found fn pointer `fn(&u32)`
|
||||||
|
|
||||||
error: aborting due to 5 previous errors
|
error: aborting due to 5 previous errors
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ LL | with_closure(|x: u32, y| {});
|
||||||
|
|
|
|
||||||
help: consider giving this closure parameter an explicit type
|
help: consider giving this closure parameter an explicit type
|
||||||
|
|
|
|
||||||
LL | with_closure(|x: u32, y: B| {});
|
LL | with_closure(|x: u32, y: _| {});
|
||||||
| +++
|
| +++
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
16
src/test/ui/type-alias-impl-trait/closure_args.rs
Normal file
16
src/test/ui/type-alias-impl-trait/closure_args.rs
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
// check-pass
|
||||||
|
|
||||||
|
// regression test for https://github.com/rust-lang/rust/issues/100800
|
||||||
|
|
||||||
|
#![feature(type_alias_impl_trait)]
|
||||||
|
|
||||||
|
trait Anything {}
|
||||||
|
impl<T> Anything for T {}
|
||||||
|
type Input = impl Anything;
|
||||||
|
fn run<F: FnOnce(Input) -> ()>(f: F, i: Input) {
|
||||||
|
f(i);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
run(|x: u32| {println!("{x}");}, 0);
|
||||||
|
}
|
23
src/test/ui/type-alias-impl-trait/closure_args2.rs
Normal file
23
src/test/ui/type-alias-impl-trait/closure_args2.rs
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
// run-pass
|
||||||
|
|
||||||
|
#![feature(type_alias_impl_trait)]
|
||||||
|
|
||||||
|
trait Foo {
|
||||||
|
// This was reachable in https://github.com/rust-lang/rust/issues/100800
|
||||||
|
fn foo(&self) { unreachable!() }
|
||||||
|
}
|
||||||
|
impl<T> Foo for T {}
|
||||||
|
|
||||||
|
struct B;
|
||||||
|
impl B {
|
||||||
|
fn foo(&self) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
type Input = impl Foo;
|
||||||
|
fn run1<F: FnOnce(Input)>(f: F, i: Input) {f(i)}
|
||||||
|
fn run2<F: FnOnce(B)>(f: F, i: B) {f(i)}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
run1(|x: B| {x.foo()}, B);
|
||||||
|
run2(|x: B| {x.foo()}, B);
|
||||||
|
}
|
|
@ -11,7 +11,7 @@ error[E0277]: the trait bound `(): Bug` is not satisfied
|
||||||
--> $DIR/issue-60371.rs:10:40
|
--> $DIR/issue-60371.rs:10:40
|
||||||
|
|
|
|
||||||
LL | const FUN: fn() -> Self::Item = || ();
|
LL | const FUN: fn() -> Self::Item = || ();
|
||||||
| ^ the trait `Bug` is not implemented for `()`
|
| ^^ the trait `Bug` is not implemented for `()`
|
||||||
|
|
|
|
||||||
= help: the trait `Bug` is implemented for `&()`
|
= help: the trait `Bug` is implemented for `&()`
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue