2022-02-17 13:28:06 +00:00
|
|
|
error: unconstrained opaque type
|
2023-11-09 10:08:02 +00:00
|
|
|
--> $DIR/two_tait_defining_each_other2.rs:5:10
|
2022-02-17 13:28:06 +00:00
|
|
|
|
|
|
|
|
LL | type A = impl Foo;
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `A` must be used in combination with a concrete type within the same module
|
|
|
|
|
2022-02-14 16:10:22 +00:00
|
|
|
error: opaque type's hidden type cannot be another opaque type from the same scope
|
2023-11-09 10:08:02 +00:00
|
|
|
--> $DIR/two_tait_defining_each_other2.rs:11:5
|
2022-02-14 16:10:22 +00:00
|
|
|
|
|
|
|
|
LL | x // B's hidden type is A (opaquely)
|
|
|
|
| ^ one of the two opaque types used here has to be outside its defining scope
|
|
|
|
|
|
|
|
|
note: opaque type whose hidden type is being assigned
|
2023-11-09 10:08:02 +00:00
|
|
|
--> $DIR/two_tait_defining_each_other2.rs:6:10
|
2022-02-14 16:10:22 +00:00
|
|
|
|
|
|
|
|
LL | type B = impl Foo;
|
|
|
|
| ^^^^^^^^
|
|
|
|
note: opaque type being used as hidden type
|
2023-11-09 10:08:02 +00:00
|
|
|
--> $DIR/two_tait_defining_each_other2.rs:5:10
|
2022-02-14 16:10:22 +00:00
|
|
|
|
|
|
|
|
LL | type A = impl Foo;
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
2022-02-17 13:28:06 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2022-02-14 16:10:22 +00:00
|
|
|
|