@@ -23,15 +23,15 @@ error[E0109]: type arguments are not allowed on this type
23
23
LL | Self::TSVariant::<()>(());
24
24
| --------- ^^ type argument not allowed
25
25
| |
26
- | not allowed on this
26
+ | not allowed on this type
27
27
28
28
error[E0109]: type arguments are not allowed on self type
29
29
--> $DIR/enum-variant-generic-args.rs:17:16
30
30
|
31
31
LL | Self::<()>::TSVariant(());
32
32
| ---- ^^ type argument not allowed
33
33
| |
34
- | not allowed on this
34
+ | not allowed on self type
35
35
|
36
36
note: `Self` is of type `Enum<T>`
37
37
--> $DIR/enum-variant-generic-args.rs:7:6
@@ -71,7 +71,7 @@ error[E0109]: type arguments are not allowed on self type
71
71
LL | Self::<()>::TSVariant::<()>(());
72
72
| ---- ^^ type argument not allowed
73
73
| |
74
- | not allowed on this
74
+ | not allowed on self type
75
75
|
76
76
note: `Self` is of type `Enum<T>`
77
77
--> $DIR/enum-variant-generic-args.rs:7:6
@@ -92,7 +92,7 @@ error[E0109]: type arguments are not allowed on this type
92
92
LL | Self::<()>::TSVariant::<()>(());
93
93
| --------- ^^ type argument not allowed
94
94
| |
95
- | not allowed on this
95
+ | not allowed on this type
96
96
97
97
error[E0308]: mismatched types
98
98
--> $DIR/enum-variant-generic-args.rs:26:29
@@ -112,7 +112,7 @@ error[E0109]: type arguments are not allowed on this type
112
112
LL | Self::SVariant::<()> { v: () };
113
113
| -------- ^^ type argument not allowed
114
114
| |
115
- | not allowed on this
115
+ | not allowed on this type
116
116
|
117
117
= note: enum variants can't have type parameters
118
118
help: you might have meant to specity type parameters on enum `Enum`
@@ -139,7 +139,7 @@ error[E0109]: type arguments are not allowed on self type
139
139
LL | Self::<()>::SVariant { v: () };
140
140
| ---- ^^ type argument not allowed
141
141
| |
142
- | not allowed on this
142
+ | not allowed on self type
143
143
|
144
144
note: `Self` is of type `Enum<T>`
145
145
--> $DIR/enum-variant-generic-args.rs:7:6
@@ -172,7 +172,7 @@ error[E0109]: type arguments are not allowed on self type
172
172
LL | Self::<()>::SVariant::<()> { v: () };
173
173
| ---- ^^ type argument not allowed
174
174
| |
175
- | not allowed on this
175
+ | not allowed on self type
176
176
|
177
177
note: `Self` is of type `Enum<T>`
178
178
--> $DIR/enum-variant-generic-args.rs:7:6
@@ -193,7 +193,7 @@ error[E0109]: type arguments are not allowed on this type
193
193
LL | Self::<()>::SVariant::<()> { v: () };
194
194
| -------- ^^ type argument not allowed
195
195
| |
196
- | not allowed on this
196
+ | not allowed on this type
197
197
|
198
198
= note: enum variants can't have type parameters
199
199
help: you might have meant to specity type parameters on enum `Enum`
@@ -220,15 +220,15 @@ error[E0109]: type arguments are not allowed on this type
220
220
LL | Self::UVariant::<()>;
221
221
| -------- ^^ type argument not allowed
222
222
| |
223
- | not allowed on this
223
+ | not allowed on this type
224
224
225
225
error[E0109]: type arguments are not allowed on self type
226
226
--> $DIR/enum-variant-generic-args.rs:43:16
227
227
|
228
228
LL | Self::<()>::UVariant;
229
229
| ---- ^^ type argument not allowed
230
230
| |
231
- | not allowed on this
231
+ | not allowed on self type
232
232
|
233
233
note: `Self` is of type `Enum<T>`
234
234
--> $DIR/enum-variant-generic-args.rs:7:6
@@ -249,7 +249,7 @@ error[E0109]: type arguments are not allowed on self type
249
249
LL | Self::<()>::UVariant::<()>;
250
250
| ---- ^^ type argument not allowed
251
251
| |
252
- | not allowed on this
252
+ | not allowed on self type
253
253
|
254
254
note: `Self` is of type `Enum<T>`
255
255
--> $DIR/enum-variant-generic-args.rs:7:6
@@ -270,39 +270,39 @@ error[E0109]: type arguments are not allowed on this type
270
270
LL | Self::<()>::UVariant::<()>;
271
271
| -------- ^^ type argument not allowed
272
272
| |
273
- | not allowed on this
273
+ | not allowed on this type
274
274
275
275
error[E0109]: type arguments are not allowed on this type
276
276
--> $DIR/enum-variant-generic-args.rs:54:29
277
277
|
278
278
LL | Enum::<()>::TSVariant::<()>(());
279
279
| --------- ^^ type argument not allowed
280
280
| |
281
- | not allowed on this
281
+ | not allowed on this type
282
282
283
283
error[E0109]: type arguments are not allowed on this type
284
284
--> $DIR/enum-variant-generic-args.rs:57:24
285
285
|
286
286
LL | Alias::TSVariant::<()>(());
287
287
| --------- ^^ type argument not allowed
288
288
| |
289
- | not allowed on this
289
+ | not allowed on this type
290
290
291
291
error[E0109]: type arguments are not allowed on this type
292
292
--> $DIR/enum-variant-generic-args.rs:59:30
293
293
|
294
294
LL | Alias::<()>::TSVariant::<()>(());
295
295
| --------- ^^ type argument not allowed
296
296
| |
297
- | not allowed on this
297
+ | not allowed on this type
298
298
299
299
error[E0109]: type arguments are not allowed on this type
300
300
--> $DIR/enum-variant-generic-args.rs:62:29
301
301
|
302
302
LL | AliasFixed::TSVariant::<()>(());
303
303
| --------- ^^ type argument not allowed
304
304
| |
305
- | not allowed on this
305
+ | not allowed on this type
306
306
307
307
error[E0107]: this type alias takes 0 generic arguments but 1 generic argument was supplied
308
308
--> $DIR/enum-variant-generic-args.rs:64:5
@@ -338,15 +338,15 @@ error[E0109]: type arguments are not allowed on this type
338
338
LL | AliasFixed::<()>::TSVariant::<()>(());
339
339
| --------- ^^ type argument not allowed
340
340
| |
341
- | not allowed on this
341
+ | not allowed on this type
342
342
343
343
error[E0109]: type arguments are not allowed on this type
344
344
--> $DIR/enum-variant-generic-args.rs:72:28
345
345
|
346
346
LL | Enum::<()>::SVariant::<()> { v: () };
347
347
| -------- ^^ type argument not allowed
348
348
| |
349
- | not allowed on this
349
+ | not allowed on this type
350
350
|
351
351
= note: enum variants can't have type parameters
352
352
@@ -356,7 +356,7 @@ error[E0109]: type arguments are not allowed on this type
356
356
LL | Alias::SVariant::<()> { v: () };
357
357
| -------- ^^ type argument not allowed
358
358
| |
359
- | not allowed on this
359
+ | not allowed on this type
360
360
|
361
361
= note: enum variants can't have type parameters
362
362
help: you might have meant to specity type parameters on enum `Enum`
@@ -371,7 +371,7 @@ error[E0109]: type arguments are not allowed on this type
371
371
LL | Alias::<()>::SVariant::<()> { v: () };
372
372
| -------- ^^ type argument not allowed
373
373
| |
374
- | not allowed on this
374
+ | not allowed on this type
375
375
|
376
376
= note: enum variants can't have type parameters
377
377
help: you might have meant to specity type parameters on enum `Enum`
@@ -386,7 +386,7 @@ error[E0109]: type arguments are not allowed on this type
386
386
LL | AliasFixed::SVariant::<()> { v: () };
387
387
| -------- ^^ type argument not allowed
388
388
| |
389
- | not allowed on this
389
+ | not allowed on this type
390
390
|
391
391
= note: enum variants can't have type parameters
392
392
help: you might have meant to specity type parameters on enum `Enum`
@@ -429,7 +429,7 @@ error[E0109]: type arguments are not allowed on this type
429
429
LL | AliasFixed::<()>::SVariant::<()> { v: () };
430
430
| -------- ^^ type argument not allowed
431
431
| |
432
- | not allowed on this
432
+ | not allowed on this type
433
433
|
434
434
= note: enum variants can't have type parameters
435
435
help: you might have meant to specity type parameters on enum `Enum`
@@ -444,31 +444,31 @@ error[E0109]: type arguments are not allowed on this type
444
444
LL | Enum::<()>::UVariant::<()>;
445
445
| -------- ^^ type argument not allowed
446
446
| |
447
- | not allowed on this
447
+ | not allowed on this type
448
448
449
449
error[E0109]: type arguments are not allowed on this type
450
450
--> $DIR/enum-variant-generic-args.rs:93:23
451
451
|
452
452
LL | Alias::UVariant::<()>;
453
453
| -------- ^^ type argument not allowed
454
454
| |
455
- | not allowed on this
455
+ | not allowed on this type
456
456
457
457
error[E0109]: type arguments are not allowed on this type
458
458
--> $DIR/enum-variant-generic-args.rs:95:29
459
459
|
460
460
LL | Alias::<()>::UVariant::<()>;
461
461
| -------- ^^ type argument not allowed
462
462
| |
463
- | not allowed on this
463
+ | not allowed on this type
464
464
465
465
error[E0109]: type arguments are not allowed on this type
466
466
--> $DIR/enum-variant-generic-args.rs:98:28
467
467
|
468
468
LL | AliasFixed::UVariant::<()>;
469
469
| -------- ^^ type argument not allowed
470
470
| |
471
- | not allowed on this
471
+ | not allowed on this type
472
472
473
473
error[E0107]: this type alias takes 0 generic arguments but 1 generic argument was supplied
474
474
--> $DIR/enum-variant-generic-args.rs:100:5
@@ -504,7 +504,7 @@ error[E0109]: type arguments are not allowed on this type
504
504
LL | AliasFixed::<()>::UVariant::<()>;
505
505
| -------- ^^ type argument not allowed
506
506
| |
507
- | not allowed on this
507
+ | not allowed on this type
508
508
509
509
error: aborting due to 39 previous errors
510
510
0 commit comments