]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-infer-bound-from-trait.stderr
Auto merge of #93718 - thomcc:used-macho, r=pnkfelix
[rust.git] / src / test / ui / regions / regions-infer-bound-from-trait.stderr
1 error[E0309]: the parameter type `A` may not live long enough
2   --> $DIR/regions-infer-bound-from-trait.rs:33:5
3    |
4 LL |     check_bound(x, a)
5    |     ^^^^^^^^^^^^^^^^^ ...so that the type `A` will meet its required lifetime bounds
6    |
7 help: consider adding an explicit lifetime bound...
8    |
9 LL | fn bar1<'a,A: 'a>(x: Inv<'a>, a: A) {
10    |             ++++
11
12 error[E0309]: the parameter type `A` may not live long enough
13   --> $DIR/regions-infer-bound-from-trait.rs:37:5
14    |
15 LL |     check_bound(x, a)
16    |     ^^^^^^^^^^^^^^^^^ ...so that the type `A` will meet its required lifetime bounds
17    |
18 help: consider adding an explicit lifetime bound...
19    |
20 LL | fn bar2<'a,'b,A:Is<'b> + 'a>(x: Inv<'a>, y: Inv<'b>, a: A) {
21    |                        ++++
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0309`.