]> git.proxmox.com Git - rustc.git/blame - src/test/ui/regions/regions-infer-covariance-due-to-decl.nll.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / regions / regions-infer-covariance-due-to-decl.nll.stderr
CommitLineData
48663c56
XL
1error: lifetime may not live long enough
2 --> $DIR/regions-infer-covariance-due-to-decl.rs:22:12
3 |
4LL | fn use_<'short,'long>(c: Covariant<'long>,
5 | ------ ----- lifetime `'long` defined here
6 | |
7 | lifetime `'short` defined here
8...
9LL | let _: Covariant<'short> = c;
10 | ^^^^^^^^^^^^^^^^^ type annotation requires that `'short` must outlive `'long`
60c5eb7d
XL
11 |
12 = help: consider adding the following bound: `'short: 'long`
48663c56
XL
13
14error: aborting due to previous error
15