]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-57843.stderr
Merge commit 'e228f0c16ea8c34794a6285bf57aab627c26b147' into libgccjit-codegen
[rust.git] / src / test / ui / issues / issue-57843.stderr
1 error: implementation of `FnOnce` is not general enough
2   --> $DIR/issue-57843.rs:25:9
3    |
4 LL |     Foo(Box::new(|_| ()));
5    |         ^^^^^^^^^^^^^^^^ implementation of `FnOnce` is not general enough
6    |
7    = note: closure with signature `fn(&'2 bool)` must implement `FnOnce<(&'1 bool,)>`, for any lifetime `'1`...
8    = note: ...but it actually implements `FnOnce<(&'2 bool,)>`, for some specific lifetime `'2`
9
10 error: aborting due to previous error
11