|
1 | 1 | error[E0645]: trait aliases are not yet implemented (see issue #41517) |
2 | | - --> $DIR/trait-alias.rs:11:1 |
| 2 | + --> $DIR/trait-alias.rs:13:1 |
3 | 3 | | |
4 | | -11 | trait SimpleAlias = Default; //~ERROR E0645 |
| 4 | +13 | trait SimpleAlias = Default; //~ERROR E0645 |
5 | 5 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
6 | 6 |
|
7 | 7 | error[E0645]: trait aliases are not yet implemented (see issue #41517) |
8 | | - --> $DIR/trait-alias.rs:12:1 |
| 8 | + --> $DIR/trait-alias.rs:14:1 |
9 | 9 | | |
10 | | -12 | trait GenericAlias<T> = Iterator<Item=T>; //~ERROR E0645 |
| 10 | +14 | trait GenericAlias<T> = Iterator<Item=T>; //~ERROR E0645 |
11 | 11 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
12 | 12 |
|
13 | 13 | error[E0645]: trait aliases are not yet implemented (see issue #41517) |
14 | | - --> $DIR/trait-alias.rs:13:1 |
| 14 | + --> $DIR/trait-alias.rs:15:1 |
15 | 15 | | |
16 | | -13 | trait Partial<T> = IntoIterator<Item=T>; //~ERROR E0645 |
| 16 | +15 | trait Partial<T> = IntoIterator<Item=T>; //~ERROR E0645 |
17 | 17 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
18 | 18 |
|
19 | 19 | error[E0645]: trait aliases are not yet implemented (see issue #41517) |
20 | | - --> $DIR/trait-alias.rs:22:1 |
| 20 | + --> $DIR/trait-alias.rs:24:1 |
21 | 21 | | |
22 | | -22 | trait WithWhere<Art, Thou> = Romeo + Romeo where Fore<(Art, Thou)>: Romeo; //~ERROR E0645 |
| 22 | +24 | trait WithWhere<Art, Thou> = Romeo + Romeo where Fore<(Art, Thou)>: Romeo; //~ERROR E0645 |
23 | 23 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
24 | 24 |
|
25 | 25 | error[E0645]: trait aliases are not yet implemented (see issue #41517) |
26 | | - --> $DIR/trait-alias.rs:23:1 |
| 26 | + --> $DIR/trait-alias.rs:25:1 |
27 | 27 | | |
28 | | -23 | trait BareWhere<Wild, Are> = where The<Wild>: Things<Are>; //~ERROR E0645 |
| 28 | +25 | trait BareWhere<Wild, Are> = where The<Wild>: Things<Are>; //~ERROR E0645 |
29 | 29 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
30 | 30 |
|
31 | 31 | error[E0645]: trait aliases are not yet implemented (see issue #41517) |
32 | | - --> $DIR/trait-alias.rs:25:1 |
| 32 | + --> $DIR/trait-alias.rs:27:1 |
33 | 33 | | |
34 | | -25 | trait CD = Clone + Default; //~ERROR E0645 |
| 34 | +27 | trait CD = Clone + Default; //~ERROR E0645 |
35 | 35 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
36 | 36 |
|
37 | 37 | error: aborting due to 6 previous errors |
|
0 commit comments