You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
419 B
18 lines
419 B
error: enum with generic parameters is not supported
|
|
--> $DIR/generic_enum.rs:3:5
|
|
|
|
|
3 | enum A<T> {
|
|
| ^^^^^^^^^
|
|
|
|
error: enum with generic parameters is not supported
|
|
--> $DIR/generic_enum.rs:7:5
|
|
|
|
|
7 | enum B<T> where T: Copy {
|
|
| ^^^^^^^^^
|
|
|
|
error: enum with where-clause is not supported
|
|
--> $DIR/generic_enum.rs:11:12
|
|
|
|
|
11 | enum C where void: Copy {
|
|
| ^^^^^^^^^^^^^^^^
|