Skip to content

Commit 611766d

Browse files
Add a test showing failing closure signature inference in new solver
1 parent e1aa9ed commit 611766d

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
error[E0282]: type annotations needed
2+
--> $DIR/infer-signature-from-impl.rs:17:16
3+
|
4+
LL | needs_foo(|x| {
5+
| ^
6+
LL | x.to_string();
7+
| - type must be known at this point
8+
|
9+
help: consider giving this closure parameter an explicit type
10+
|
11+
LL | needs_foo(|x: /* Type */| {
12+
| ++++++++++++
13+
14+
error: aborting due to previous error
15+
16+
For more information about this error, try `rustc --explain E0282`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// revisions: current next
2+
//[next] compile-flags: -Ztrait-solver=next
3+
//[next] known-bug: trait-system-refactor-initiative#71
4+
//[current] check-pass
5+
6+
trait Foo {}
7+
fn needs_foo<T>(_: T)
8+
where
9+
Wrap<T>: Foo,
10+
{
11+
}
12+
13+
struct Wrap<T>(T);
14+
impl<T> Foo for Wrap<T> where T: Fn(i32) {}
15+
16+
fn main() {
17+
needs_foo(|x| {
18+
x.to_string();
19+
});
20+
}

0 commit comments

Comments
 (0)