summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-types/issue-87261.stderr
blob: f5c6d82471a8bd0967576990b76fa335e7479927 (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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
error[E0271]: type mismatch resolving `<A as Trait>::Associated == ()`
  --> $DIR/issue-87261.rs:56:19
   |
LL |     accepts_trait(a);
   |     ------------- ^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<A as Trait>::Associated`
note: required by a bound in `accepts_trait`
  --> $DIR/issue-87261.rs:43:27
   |
LL | fn accepts_trait<T: Trait<Associated = ()>>(_: T) {}
   |                           ^^^^^^^^^^^^^^^ required by this bound in `accepts_trait`
help: consider constraining the associated type `<A as Trait>::Associated` to `()`
   |
LL |     A: Trait<Associated = ()> + 'static,
   |             +++++++++++++++++

error[E0271]: type mismatch resolving `<B as Trait>::Associated == ()`
  --> $DIR/issue-87261.rs:59:19
   |
LL |     accepts_trait(b);
   |     ------------- ^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<B as Trait>::Associated`
   = help: consider constraining the associated type `<B as Trait>::Associated` to `()`
   = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
note: required by a bound in `accepts_trait`
  --> $DIR/issue-87261.rs:43:27
   |
LL | fn accepts_trait<T: Trait<Associated = ()>>(_: T) {}
   |                           ^^^^^^^^^^^^^^^ required by this bound in `accepts_trait`

error[E0271]: type mismatch resolving `<C as Trait>::Associated == ()`
  --> $DIR/issue-87261.rs:62:19
   |
LL |     accepts_trait(c);
   |     ------------- ^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<C as Trait>::Associated`
note: required by a bound in `accepts_trait`
  --> $DIR/issue-87261.rs:43:27
   |
LL | fn accepts_trait<T: Trait<Associated = ()>>(_: T) {}
   |                           ^^^^^^^^^^^^^^^ required by this bound in `accepts_trait`
help: consider constraining the associated type `<C as Trait>::Associated` to `()`
   |
LL |     C: Trait<Associated = ()> + Foo,
   |             +++++++++++++++++

error[E0271]: type mismatch resolving `<D as Trait>::Associated == ()`
  --> $DIR/issue-87261.rs:65:19
   |
LL |     accepts_trait(d);
   |     ------------- ^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<D as Trait>::Associated`
   = help: consider constraining the associated type `<D as Trait>::Associated` to `()`
   = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
note: required by a bound in `accepts_trait`
  --> $DIR/issue-87261.rs:43:27
   |
LL | fn accepts_trait<T: Trait<Associated = ()>>(_: T) {}
   |                           ^^^^^^^^^^^^^^^ required by this bound in `accepts_trait`

error[E0271]: type mismatch resolving `<E as GenericTrait<()>>::Associated == ()`
  --> $DIR/issue-87261.rs:68:27
   |
LL |     accepts_generic_trait(e);
   |     --------------------- ^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<E as GenericTrait<()>>::Associated`
note: required by a bound in `accepts_generic_trait`
  --> $DIR/issue-87261.rs:44:46
   |
LL | fn accepts_generic_trait<T: GenericTrait<(), Associated = ()>>(_: T) {}
   |                                              ^^^^^^^^^^^^^^^ required by this bound in `accepts_generic_trait`
help: consider constraining the associated type `<E as GenericTrait<()>>::Associated` to `()`
   |
LL |     E: GenericTrait<(), Associated = ()> + 'static,
   |                       +++++++++++++++++

error[E0271]: type mismatch resolving `<F as GenericTrait<()>>::Associated == ()`
  --> $DIR/issue-87261.rs:71:27
   |
LL |     accepts_generic_trait(f);
   |     --------------------- ^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<F as GenericTrait<()>>::Associated`
note: required by a bound in `accepts_generic_trait`
  --> $DIR/issue-87261.rs:44:46
   |
LL | fn accepts_generic_trait<T: GenericTrait<(), Associated = ()>>(_: T) {}
   |                                              ^^^^^^^^^^^^^^^ required by this bound in `accepts_generic_trait`
help: consider constraining the associated type `<F as GenericTrait<()>>::Associated` to `()`
   |
LL |     F: GenericTrait<(), Associated = ()> + Foo,
   |                       +++++++++++++++++

error[E0271]: type mismatch resolving `<G as GenericTrait<()>>::Associated == ()`
  --> $DIR/issue-87261.rs:74:27
   |
LL |     accepts_generic_trait(g);
   |     --------------------- ^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<G as GenericTrait<()>>::Associated`
   = help: consider constraining the associated type `<G as GenericTrait<()>>::Associated` to `()`
   = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
note: required by a bound in `accepts_generic_trait`
  --> $DIR/issue-87261.rs:44:46
   |
LL | fn accepts_generic_trait<T: GenericTrait<(), Associated = ()>>(_: T) {}
   |                                              ^^^^^^^^^^^^^^^ required by this bound in `accepts_generic_trait`

error[E0271]: type mismatch resolving `<impl Trait as Trait>::Associated == ()`
  --> $DIR/issue-87261.rs:79:19
   |
LL | fn returns_opaque() -> impl Trait + 'static {
   |                        -------------------- the found opaque type
...
LL |     accepts_trait(returns_opaque());
   |     ------------- ^^^^^^^^^^^^^^^^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<impl Trait + 'static as Trait>::Associated`
note: required by a bound in `accepts_trait`
  --> $DIR/issue-87261.rs:43:27
   |
LL | fn accepts_trait<T: Trait<Associated = ()>>(_: T) {}
   |                           ^^^^^^^^^^^^^^^ required by this bound in `accepts_trait`
help: consider constraining the associated type `<impl Trait + 'static as Trait>::Associated` to `()`
   |
LL | fn returns_opaque() -> impl Trait<Associated = ()> + 'static {
   |                                  +++++++++++++++++

error[E0271]: type mismatch resolving `<impl DerivedTrait as Trait>::Associated == ()`
  --> $DIR/issue-87261.rs:82:19
   |
LL | fn returns_opaque_derived() -> impl DerivedTrait + 'static {
   |                                --------------------------- the found opaque type
...
LL |     accepts_trait(returns_opaque_derived());
   |     ------------- ^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<impl DerivedTrait + 'static as Trait>::Associated`
note: required by a bound in `accepts_trait`
  --> $DIR/issue-87261.rs:43:27
   |
LL | fn accepts_trait<T: Trait<Associated = ()>>(_: T) {}
   |                           ^^^^^^^^^^^^^^^ required by this bound in `accepts_trait`
help: consider constraining the associated type `<impl DerivedTrait + 'static as Trait>::Associated` to `()`
   |
LL | fn returns_opaque_derived() -> impl DerivedTrait<Associated = ()> + 'static {
   |                                                 +++++++++++++++++

error[E0271]: type mismatch resolving `<impl Trait + Foo as Trait>::Associated == ()`
  --> $DIR/issue-87261.rs:85:19
   |
LL | fn returns_opaque_foo() -> impl Trait + Foo {
   |                            ---------------- the found opaque type
...
LL |     accepts_trait(returns_opaque_foo());
   |     ------------- ^^^^^^^^^^^^^^^^^^^^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<impl Trait + Foo as Trait>::Associated`
note: required by a bound in `accepts_trait`
  --> $DIR/issue-87261.rs:43:27
   |
LL | fn accepts_trait<T: Trait<Associated = ()>>(_: T) {}
   |                           ^^^^^^^^^^^^^^^ required by this bound in `accepts_trait`
help: consider constraining the associated type `<impl Trait + Foo as Trait>::Associated` to `()`
   |
LL | fn returns_opaque_foo() -> impl Trait<Associated = ()> + Foo {
   |                                      +++++++++++++++++

error[E0271]: type mismatch resolving `<impl DerivedTrait + Foo as Trait>::Associated == ()`
  --> $DIR/issue-87261.rs:88:19
   |
LL | fn returns_opaque_derived_foo() -> impl DerivedTrait + Foo {
   |                                    ----------------------- the found opaque type
...
LL |     accepts_trait(returns_opaque_derived_foo());
   |     ------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<impl DerivedTrait + Foo as Trait>::Associated`
   = help: consider constraining the associated type `<impl DerivedTrait + Foo as Trait>::Associated` to `()`
   = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
note: required by a bound in `accepts_trait`
  --> $DIR/issue-87261.rs:43:27
   |
LL | fn accepts_trait<T: Trait<Associated = ()>>(_: T) {}
   |                           ^^^^^^^^^^^^^^^ required by this bound in `accepts_trait`

error[E0271]: type mismatch resolving `<impl GenericTrait<()> as GenericTrait<()>>::Associated == ()`
  --> $DIR/issue-87261.rs:91:27
   |
LL | fn returns_opaque_generic() -> impl GenericTrait<()> + 'static {
   |                                ------------------------------- the found opaque type
...
LL |     accepts_generic_trait(returns_opaque_generic());
   |     --------------------- ^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<impl GenericTrait<()> + 'static as GenericTrait<()>>::Associated`
note: required by a bound in `accepts_generic_trait`
  --> $DIR/issue-87261.rs:44:46
   |
LL | fn accepts_generic_trait<T: GenericTrait<(), Associated = ()>>(_: T) {}
   |                                              ^^^^^^^^^^^^^^^ required by this bound in `accepts_generic_trait`
help: consider constraining the associated type `<impl GenericTrait<()> + 'static as GenericTrait<()>>::Associated` to `()`
   |
LL | fn returns_opaque_generic() -> impl GenericTrait<(), Associated = ()> + 'static {
   |                                                    +++++++++++++++++

error[E0271]: type mismatch resolving `<impl GenericTrait<()> + Foo as GenericTrait<()>>::Associated == ()`
  --> $DIR/issue-87261.rs:94:27
   |
LL | fn returns_opaque_generic_foo() -> impl GenericTrait<()> + Foo {
   |                                    --------------------------- the found opaque type
...
LL |     accepts_generic_trait(returns_opaque_generic_foo());
   |     --------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<impl GenericTrait<()> + Foo as GenericTrait<()>>::Associated`
note: required by a bound in `accepts_generic_trait`
  --> $DIR/issue-87261.rs:44:46
   |
LL | fn accepts_generic_trait<T: GenericTrait<(), Associated = ()>>(_: T) {}
   |                                              ^^^^^^^^^^^^^^^ required by this bound in `accepts_generic_trait`
help: consider constraining the associated type `<impl GenericTrait<()> + Foo as GenericTrait<()>>::Associated` to `()`
   |
LL | fn returns_opaque_generic_foo() -> impl GenericTrait<(), Associated = ()> + Foo {
   |                                                        +++++++++++++++++

error[E0271]: type mismatch resolving `<impl GenericTrait<()> + GenericTrait<u8> as GenericTrait<()>>::Associated == ()`
  --> $DIR/issue-87261.rs:97:27
   |
LL | fn returns_opaque_generic_duplicate() -> impl GenericTrait<()> + GenericTrait<u8> {
   |                                          ---------------------------------------- the found opaque type
...
LL |     accepts_generic_trait(returns_opaque_generic_duplicate());
   |     --------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `()`, found associated type
   |     |
   |     required by a bound introduced by this call
   |
   = note:    expected unit type `()`
           found associated type `<impl GenericTrait<()> + GenericTrait<u8> as GenericTrait<()>>::Associated`
   = help: consider constraining the associated type `<impl GenericTrait<()> + GenericTrait<u8> as GenericTrait<()>>::Associated` to `()`
   = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
note: required by a bound in `accepts_generic_trait`
  --> $DIR/issue-87261.rs:44:46
   |
LL | fn accepts_generic_trait<T: GenericTrait<(), Associated = ()>>(_: T) {}
   |                                              ^^^^^^^^^^^^^^^ required by this bound in `accepts_generic_trait`

error: aborting due to 14 previous errors

For more information about this error, try `rustc --explain E0271`.