40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
error[E0645]: trait aliases are not yet implemented (see issue #41517)
|
|
--> $DIR/trait-alias.rs:13:1
|
|
|
|
|
LL | trait SimpleAlias = Default; //~ERROR E0645
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0645]: trait aliases are not yet implemented (see issue #41517)
|
|
--> $DIR/trait-alias.rs:14:1
|
|
|
|
|
LL | trait GenericAlias<T> = Iterator<Item=T>; //~ERROR E0645
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0645]: trait aliases are not yet implemented (see issue #41517)
|
|
--> $DIR/trait-alias.rs:15:1
|
|
|
|
|
LL | trait Partial<T> = IntoIterator<Item=T>; //~ERROR E0645
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0645]: trait aliases are not yet implemented (see issue #41517)
|
|
--> $DIR/trait-alias.rs:24:1
|
|
|
|
|
LL | trait WithWhere<Art, Thou> = Romeo + Romeo where Fore<(Art, Thou)>: Romeo; //~ERROR E0645
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0645]: trait aliases are not yet implemented (see issue #41517)
|
|
--> $DIR/trait-alias.rs:25:1
|
|
|
|
|
LL | trait BareWhere<Wild, Are> = where The<Wild>: Things<Are>; //~ERROR E0645
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0645]: trait aliases are not yet implemented (see issue #41517)
|
|
--> $DIR/trait-alias.rs:27:1
|
|
|
|
|
LL | trait CD = Clone + Default; //~ERROR E0645
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0645`.
|