blob: 2d95be4e52c61b34c52a78d7a9b3782c61f8ac14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0720]: opaque type expands to a recursive type
--> $DIR/issue-60473.rs:15:12
|
LL | let x: impl Trait<A> = (); // FIXME: The error doesn't seem correct.
| ^^^^^^^^^^^^^ expands to a recursive type
|
= note: type resolves to itself
error: aborting due to previous error
For more information about this error, try `rustc --explain E0720`.
|