|
1 | 1 | error[E0109]: type parameters are not allowed on this type
|
2 |
| - --> $DIR/collections.rs:57:90 |
| 2 | + --> $DIR/collections.rs:59:90 |
3 | 3 | |
|
4 | 4 | LL | fn floatify<C>(ints: &C) -> <<C as Collection<i32>>::Family as CollectionFamily>::Member<f32>
|
5 | 5 | | ^^^ type parameter not allowed
|
6 | 6 |
|
7 | 7 | error[E0109]: type parameters are not allowed on this type
|
8 |
| - --> $DIR/collections.rs:67:69 |
| 8 | + --> $DIR/collections.rs:69:69 |
9 | 9 | |
|
10 | 10 | LL | fn floatify_sibling<C>(ints: &C) -> <C as Collection<i32>>::Sibling<f32>
|
11 | 11 | | ^^^ type parameter not allowed
|
12 | 12 |
|
13 | 13 | error[E0110]: lifetime parameters are not allowed on this type
|
14 |
| - --> $DIR/collections.rs:23:50 |
| 14 | + --> $DIR/collections.rs:24:50 |
15 | 15 | |
|
16 | 16 | LL | fn iterate<'iter>(&'iter self) -> Self::Iter<'iter>;
|
17 | 17 | | ^^^^^ lifetime parameter not allowed on this type
|
18 | 18 |
|
19 | 19 | error[E0109]: type parameters are not allowed on this type
|
20 |
| - --> $DIR/collections.rs:28:100 |
| 20 | + --> $DIR/collections.rs:30:16 |
21 | 21 | |
|
22 |
| -LL | type Sibling<U>: Collection<U> = <<Self as Collection<T>>::Family as CollectionFamily>::Member<U>; |
23 |
| - | ^ type parameter not allowed |
| 22 | +LL | Member<U>; |
| 23 | + | ^ type parameter not allowed |
24 | 24 |
|
25 | 25 | error[E0110]: lifetime parameters are not allowed on this type
|
26 |
| - --> $DIR/collections.rs:49:50 |
| 26 | + --> $DIR/collections.rs:51:50 |
27 | 27 | |
|
28 | 28 | LL | fn iterate<'iter>(&'iter self) -> Self::Iter<'iter> {
|
29 | 29 | | ^^^^^ lifetime parameter not allowed on this type
|
|
0 commit comments