]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-14285.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-14285.stderr
1 error[E0621]: explicit lifetime required in the type of `a`
2   --> $DIR/issue-14285.rs:12:5
3    |
4 LL | fn foo<'a>(a: &dyn Foo) -> B<'a> {
5    |               -------- help: add explicit lifetime `'a` to the type of `a`: `&'a (dyn Foo + 'a)`
6 LL |     B(a)
7    |     ^^^^ lifetime `'a` required
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0621`.