blob: 55f47785f0eeb33bd2eee90f82e80b1710e2ce31 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0667]: `impl Trait` is not allowed in path parameters
--> $DIR/issue-57979-impl-trait-in-path.rs:8:48
|
LL | pub fn demo(_: impl Quux<(), Assoc=<() as Quux<impl Bar>>::Assoc>) { }
| ^^^^^^^^
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0667`.
|