2024-01-07 11:11:48 -06:00
|
|
|
error[E0562]: `impl Trait` is not allowed in the type of variable bindings
|
2021-07-22 13:16:33 -05:00
|
|
|
--> $DIR/issue-58504.rs:10:16
|
|
|
|
|
|
2023-10-19 11:06:43 -05:00
|
|
|
LL | let gens: [impl Coroutine<Return=!, Yield=()>;2] = [ mk_gen(), mk_gen() ];
|
2021-07-22 13:16:33 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2024-01-07 11:11:48 -06:00
|
|
|
|
|
|
|
|
= note: `impl Trait` is only allowed in arguments and return types of functions and methods
|
2021-07-22 13:16:33 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2021-07-22 13:16:33 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0562`.
|