]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-57843.stderr
Require Drop impls to have the same constness on its bounds as the bounds on the...
[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