rust/tests/ui/nll/issue-57843.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
456 B
Plaintext
Raw Normal View History

error: implementation of `FnOnce` is not general enough
--> $DIR/issue-57843.rs:25:9
|
2019-03-09 12:03:44 +00:00
LL | Foo(Box::new(|_| ()));
| ^^^^^^^^^^^^^^^^ implementation of `FnOnce` is not general enough
|
= note: closure with signature `fn(&'2 bool)` must implement `FnOnce<(&'1 bool,)>`, for any lifetime `'1`...
= note: ...but it actually implements `FnOnce<(&'2 bool,)>`, for some specific lifetime `'2`
error: aborting due to previous error