rust/tests/ui/impl-trait/issues/issue-57979-nested-impl-trait-in-assoc-proj.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
513 B
Plaintext
Raw Normal View History

2019-08-03 19:59:22 +00:00
error[E0666]: nested `impl Trait` is not allowed
--> $DIR/issue-57979-nested-impl-trait-in-assoc-proj.rs:9:41
|
LL | pub fn demo(_: impl Quux<Assoc=impl Foo<impl Bar>>) { }
| ---------^^^^^^^^-
| | |
| | nested `impl Trait` here
| outer `impl Trait`
error: aborting due to previous error
2019-08-03 19:59:22 +00:00
For more information about this error, try `rustc --explain E0666`.