forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#116899 - compiler-errors:closure-sig-infer, r…
…=lcnr Add a test showing failing closure signature inference in new solver Been thinking a bit about how to make this test pass... but we don't actually have any good tests exercising this behavior in the suite. r? lcnr
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
}); | ||
} |