|
| 1 | +error: [o] |
| 2 | + --> $DIR/variance.rs:8:29 |
| 3 | + | |
| 4 | +LL | type NotCapturedEarly<'a> = impl Sized; |
| 5 | + | ^^^^^^^^^^ |
| 6 | + |
| 7 | +error: [o] |
| 8 | + --> $DIR/variance.rs:10:26 |
| 9 | + | |
| 10 | +LL | type CapturedEarly<'a> = impl Sized + Captures<'a>; |
| 11 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 12 | + |
| 13 | +error: [o] |
| 14 | + --> $DIR/variance.rs:12:56 |
| 15 | + | |
| 16 | +LL | type NotCapturedLate<'a> = dyn for<'b> Iterator<Item = impl Sized>; |
| 17 | + | ^^^^^^^^^^ |
| 18 | + |
| 19 | +error: [o] |
| 20 | + --> $DIR/variance.rs:14:53 |
| 21 | + | |
| 22 | +LL | type CapturedLate<'a> = dyn for<'b> Iterator<Item = impl Sized + Captures<'b>>; |
| 23 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 24 | + |
| 25 | +error: [o] |
| 26 | + --> $DIR/variance.rs:16:49 |
| 27 | + | |
| 28 | +LL | type Captured<'a> = dyn for<'b> Iterator<Item = impl Sized + Captures<'a> + Captures<'b>>; |
| 29 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 30 | + |
| 31 | +error: [o, o, o] |
| 32 | + --> $DIR/variance.rs:18:27 |
| 33 | + | |
| 34 | +LL | type Bar<'a, 'b: 'b, T> = impl Sized; |
| 35 | + | ^^^^^^^^^^ |
| 36 | + |
| 37 | +error: [o, o] |
| 38 | + --> $DIR/variance.rs:31:38 |
| 39 | + | |
| 40 | +LL | type ImplicitCapturedEarly<'a> = impl Sized; |
| 41 | + | ^^^^^^^^^^ |
| 42 | + |
| 43 | +error: [o, o] |
| 44 | + --> $DIR/variance.rs:33:37 |
| 45 | + | |
| 46 | +LL | type ExplicitCaptureEarly<'a> = impl Sized + Captures<'i>; |
| 47 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 48 | + |
| 49 | +error: [o, o] |
| 50 | + --> $DIR/variance.rs:35:36 |
| 51 | + | |
| 52 | +LL | type ImplicitCaptureLate<'a> = impl Sized; |
| 53 | + | ^^^^^^^^^^ |
| 54 | + |
| 55 | +error: [o, o] |
| 56 | + --> $DIR/variance.rs:37:36 |
| 57 | + | |
| 58 | +LL | type ExplicitCaptureLate<'a> = impl Sized + Captures<'a>; |
| 59 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 60 | + |
| 61 | +error: [o, o] |
| 62 | + --> $DIR/variance.rs:41:38 |
| 63 | + | |
| 64 | +LL | type ImplicitCapturedEarly<'a> = impl Sized; |
| 65 | + | ^^^^^^^^^^ |
| 66 | + |
| 67 | +error: [o, o] |
| 68 | + --> $DIR/variance.rs:43:37 |
| 69 | + | |
| 70 | +LL | type ExplicitCaptureEarly<'a> = impl Sized + Captures<'i>; |
| 71 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 72 | + |
| 73 | +error: [o, o] |
| 74 | + --> $DIR/variance.rs:45:36 |
| 75 | + | |
| 76 | +LL | type ImplicitCaptureLate<'a> = impl Sized; |
| 77 | + | ^^^^^^^^^^ |
| 78 | + |
| 79 | +error: [o, o] |
| 80 | + --> $DIR/variance.rs:47:36 |
| 81 | + | |
| 82 | +LL | type ExplicitCaptureLate<'a> = impl Sized + Captures<'a>; |
| 83 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 84 | + |
| 85 | +error: aborting due to 14 previous errors |
| 86 | + |
0 commit comments