summaryrefslogtreecommitdiffstats
path: root/src/test/ui/impl-trait/issues/issue-57979-deeply-nested-impl-trait-in-assoc-proj.stderr
blob: 6bebbc01f3d6f88142fa8fdec54941e366fac1a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0666]: nested `impl Trait` is not allowed
  --> $DIR/issue-57979-deeply-nested-impl-trait-in-assoc-proj.rs:14:48
   |
LL | pub fn demo(_: impl Quux<Assoc=Deeper<impl Foo<impl Bar>>>) { }
   |                                       ---------^^^^^^^^-
   |                                       |        |
   |                                       |        nested `impl Trait` here
   |                                       outer `impl Trait`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0666`.