2024-10-27 06:21:24 +01:00
|
|
|
error[E0562]: `impl Trait` is not allowed in paths
|
2019-08-03 21:59:22 +02:00
|
|
|
--> $DIR/issue-57979-impl-trait-in-path.rs:8:48
|
2019-02-22 15:10:12 +01:00
|
|
|
|
|
2019-08-03 21:59:22 +02:00
|
|
|
LL | pub fn demo(_: impl Quux<(), Assoc=<() as Quux<impl Bar>>::Assoc>) { }
|
|
|
|
| ^^^^^^^^
|
2024-10-27 06:21:24 +01:00
|
|
|
|
|
|
|
|
= note: `impl Trait` is only allowed in arguments and return types of functions and methods
|
2019-02-22 15:10:12 +01:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-02-22 15:10:12 +01:00
|
|
|
|
2024-10-27 06:21:24 +01:00
|
|
|
For more information about this error, try `rustc --explain E0562`.
|