]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type-alias-impl-trait/issue-57611-trait-alias.base.stderr
Auto merge of #95454 - randomicon00:fix95444, r=wesleywiser
[rust.git] / src / test / ui / type-alias-impl-trait / issue-57611-trait-alias.base.stderr
1 error: implementation of `FnOnce` is not general enough
2   --> $DIR/issue-57611-trait-alias.rs:25:9
3    |
4 LL |         |x| x
5    |         ^^^^^ implementation of `FnOnce` is not general enough
6    |
7    = note: closure with signature `fn(&'2 X) -> &X` must implement `FnOnce<(&'1 X,)>`, for any lifetime `'1`...
8    = note: ...but it actually implements `FnOnce<(&'2 X,)>`, for some specific lifetime `'2`
9
10 error: aborting due to previous error
11