]> git.proxmox.com Git - rustc.git/blame - src/test/ui/generic-associated-types/unsatified-item-lifetime-bound.stderr
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / test / ui / generic-associated-types / unsatified-item-lifetime-bound.stderr
CommitLineData
6a06907d
XL
1warning: unnecessary lifetime parameter `'a`
2 --> $DIR/unsatified-item-lifetime-bound.rs:5:12
3 |
4LL | type Y<'a: 'static>;
5 | ^^^^^^^^^^^
6 |
7 = help: you can use the `'static` lifetime directly, in place of `'a`
8
9error[E0478]: lifetime bound not satisfied
10 --> $DIR/unsatified-item-lifetime-bound.rs:14:8
11 |
12LL | f: <T as X>::Y<'a>,
13 | ^^^^^^^^^^^^^^^
14 |
15note: lifetime parameter instantiated with the lifetime `'a` as defined on the struct at 13:10
16 --> $DIR/unsatified-item-lifetime-bound.rs:13:10
17 |
18LL | struct B<'a, T: for<'r> X<Y<'r> = &'r ()>> {
19 | ^^
20 = note: but lifetime parameter must outlive the static lifetime
21
22error[E0478]: lifetime bound not satisfied
23 --> $DIR/unsatified-item-lifetime-bound.rs:19:8
24 |
25LL | f: <T as X>::Y<'a>,
26 | ^^^^^^^^^^^^^^^
27 |
28note: lifetime parameter instantiated with the lifetime `'a` as defined on the struct at 18:10
29 --> $DIR/unsatified-item-lifetime-bound.rs:18:10
30 |
31LL | struct C<'a, T: X> {
32 | ^^
33 = note: but lifetime parameter must outlive the static lifetime
34
35error[E0478]: lifetime bound not satisfied
36 --> $DIR/unsatified-item-lifetime-bound.rs:24:8
37 |
38LL | f: <() as X>::Y<'a>,
39 | ^^^^^^^^^^^^^^^^
40 |
41note: lifetime parameter instantiated with the lifetime `'a` as defined on the struct at 23:10
42 --> $DIR/unsatified-item-lifetime-bound.rs:23:10
43 |
44LL | struct D<'a> {
45 | ^^
46 = note: but lifetime parameter must outlive the static lifetime
47
48error: aborting due to 3 previous errors; 1 warning emitted
49
50For more information about this error, try `rustc --explain E0478`.