blob: 806a3cb22754aecf8e1b12a53b0ef876d3643c87 [file] [log] [blame]
error[E0562]: `impl Trait` is not allowed in generics
--> $DIR/impl-trait-in-generic-param.rs:11:37
|
LL | struct Container<T: Iterable<Item = impl Foo>> {
| ^^^^^^^^
|
= note: `impl Trait` is only allowed in arguments and return types of functions and methods
error[E0562]: `impl Trait` is not allowed in generics
--> $DIR/impl-trait-in-generic-param.rs:16:30
|
LL | enum Enum<T: Iterable<Item = impl Foo>> {
| ^^^^^^^^
|
= note: `impl Trait` is only allowed in arguments and return types of functions and methods
error[E0562]: `impl Trait` is not allowed in generics
--> $DIR/impl-trait-in-generic-param.rs:21:32
|
LL | union Union<T: Iterable<Item = impl Foo> + Copy> {
| ^^^^^^^^
|
= note: `impl Trait` is only allowed in arguments and return types of functions and methods
error[E0562]: `impl Trait` is not allowed in generics
--> $DIR/impl-trait-in-generic-param.rs:26:30
|
LL | type Type<T: Iterable<Item = impl Foo>> = T;
| ^^^^^^^^
|
= note: `impl Trait` is only allowed in arguments and return types of functions and methods
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0562`.