summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/self-outlives-lint.stderr
blob: fdb1f50a7764c94d3e61b83ee87851107fc48929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
error: missing required bound on `Item`
  --> $DIR/self-outlives-lint.rs:9:5
   |
LL |     type Item<'x>;
   |     ^^^^^^^^^^^^^-
   |                  |
   |                  help: add the required where clause: `where Self: 'x`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Out`
  --> $DIR/self-outlives-lint.rs:25:5
   |
LL |     type Out<'x>;
   |     ^^^^^^^^^^^^-
   |                 |
   |                 help: add the required where clause: `where T: 'x`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Out`
  --> $DIR/self-outlives-lint.rs:39:5
   |
LL |     type Out<'x>;
   |     ^^^^^^^^^^^^-
   |                 |
   |                 help: add the required where clause: `where T: 'x`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bounds on `Out`
  --> $DIR/self-outlives-lint.rs:46:5
   |
LL |     type Out<'x, 'y>;
   |     ^^^^^^^^^^^^^^^^-
   |                     |
   |                     help: add the required where clauses: `where T: 'x, U: 'y`
   |
   = note: these bounds are currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Out`
  --> $DIR/self-outlives-lint.rs:61:5
   |
LL |     type Out<'x, D>;
   |     ^^^^^^^^^^^^^^^-
   |                    |
   |                    help: add the required where clause: `where D: 'x`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Out`
  --> $DIR/self-outlives-lint.rs:77:5
   |
LL |     type Out<'x, D>;
   |     ^^^^^^^^^^^^^^^-
   |                    |
   |                    help: add the required where clause: `where D: 'x`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Out`
  --> $DIR/self-outlives-lint.rs:92:5
   |
LL |     type Out<'x, D>;
   |     ^^^^^^^^^^^^^^^-
   |                    |
   |                    help: add the required where clause: `where D: 'x`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bounds on `Bar`
  --> $DIR/self-outlives-lint.rs:114:5
   |
LL |     type Bar<'b>;
   |     ^^^^^^^^^^^^-
   |                 |
   |                 help: add the required where clauses: `where Self: 'a, Self: 'b`
   |
   = note: these bounds are currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Bar`
  --> $DIR/self-outlives-lint.rs:122:5
   |
LL |     type Bar<'b>;
   |     ^^^^^^^^^^^^-
   |                 |
   |                 help: add the required where clause: `where Self: 'b`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Bar`
  --> $DIR/self-outlives-lint.rs:129:5
   |
LL |     type Bar<'b>;
   |     ^^^^^^^^^^^^-
   |                 |
   |                 help: add the required where clause: `where Self: 'b`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Item`
  --> $DIR/self-outlives-lint.rs:142:5
   |
LL |     type Item<'a>;
   |     ^^^^^^^^^^^^^-
   |                  |
   |                  help: add the required where clause: `where Self: 'a`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Iterator`
  --> $DIR/self-outlives-lint.rs:144:5
   |
LL |     type Iterator<'a>: Iterator<Item = Self::Item<'a>>;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
   |                                                       |
   |                                                       help: add the required where clause: `where Self: 'a`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Item`
  --> $DIR/self-outlives-lint.rs:150:5
   |
LL |     type Item<'a>;
   |     ^^^^^^^^^^^^^-
   |                  |
   |                  help: add the required where clause: `where Self: 'a`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Bar`
  --> $DIR/self-outlives-lint.rs:159:5
   |
LL |     type Bar<'a, 'b>;
   |     ^^^^^^^^^^^^^^^^-
   |                     |
   |                     help: add the required where clause: `where 'b: 'a`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Fut`
  --> $DIR/self-outlives-lint.rs:175:5
   |
LL |     type Fut<'out>;
   |     ^^^^^^^^^^^^^^-
   |                   |
   |                   help: add the required where clause: `where 'ctx: 'out`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: aborting due to 15 previous errors