]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-14285.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-14285.stderr
CommitLineData
8faf50e0 1error[E0621]: explicit lifetime required in the type of `a`
0731742a 2 --> $DIR/issue-14285.rs:12:5
8faf50e0 3 |
dc9dc135
XL
4LL | fn foo<'a>(a: &dyn Foo) -> B<'a> {
5 | -------- help: add explicit lifetime `'a` to the type of `a`: `&'a (dyn Foo + 'a)`
532ac7d7 6LL | B(a)
8faf50e0
XL
7 | ^^^^ lifetime `'a` required
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0621`.