]> git.proxmox.com Git - rustc.git/blame - src/test/ui/regions/regions-infer-bound-from-trait.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / regions / regions-infer-bound-from-trait.stderr
CommitLineData
48663c56 1error[E0309]: the parameter type `A` may not live long enough
923072b8 2 --> $DIR/regions-infer-bound-from-trait.rs:33:5
48663c56
XL
3 |
4LL | check_bound(x, a)
04454e1e
FG
5 | ^^^^^^^^^^^^^^^^^ ...so that the type `A` will meet its required lifetime bounds
6 |
7help: consider adding an explicit lifetime bound...
48663c56 8 |
04454e1e
FG
9LL | fn bar1<'a,A: 'a>(x: Inv<'a>, a: A) {
10 | ++++
48663c56
XL
11
12error[E0309]: the parameter type `A` may not live long enough
923072b8 13 --> $DIR/regions-infer-bound-from-trait.rs:37:5
48663c56
XL
14 |
15LL | check_bound(x, a)
04454e1e
FG
16 | ^^^^^^^^^^^^^^^^^ ...so that the type `A` will meet its required lifetime bounds
17 |
18help: consider adding an explicit lifetime bound...
48663c56 19 |
04454e1e
FG
20LL | fn bar2<'a,'b,A:Is<'b> + 'a>(x: Inv<'a>, y: Inv<'b>, a: A) {
21 | ++++
48663c56
XL
22
23error: aborting due to 2 previous errors
24
25For more information about this error, try `rustc --explain E0309`.