Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a test showing failing closure signature inference in new solver #116899

Merged
merged 1 commit into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions tests/ui/closures/infer-signature-from-impl.next.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
error[E0282]: type annotations needed
--> $DIR/infer-signature-from-impl.rs:17:16
|
LL | needs_foo(|x| {
| ^
LL | x.to_string();
| - type must be known at this point
|
help: consider giving this closure parameter an explicit type
|
LL | needs_foo(|x: /* Type */| {
| ++++++++++++

error: aborting due to previous error

For more information about this error, try `rustc --explain E0282`.
20 changes: 20 additions & 0 deletions tests/ui/closures/infer-signature-from-impl.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// revisions: current next
//[next] compile-flags: -Ztrait-solver=next
//[next] known-bug: trait-system-refactor-initiative#71
//[current] check-pass

trait Foo {}
fn needs_foo<T>(_: T)
where
Wrap<T>: Foo,
{
}

struct Wrap<T>(T);
impl<T> Foo for Wrap<T> where T: Fn(i32) {}

fn main() {
needs_foo(|x| {
x.to_string();
});
}
Loading