2025-04-05 18:06:47 +00:00
|
|
|
error[E0720]: cannot resolve opaque type
|
|
|
|
|
--> $DIR/recursive-in-exhaustiveness.rs:17:22
|
2025-04-07 22:32:49 +00:00
|
|
|
|
|
|
|
|
|
LL | fn build<T>(x: T) -> impl Sized {
|
2025-04-05 18:06:47 +00:00
|
|
|
| ^^^^^^^^^^
|
2025-04-07 22:32:49 +00:00
|
|
|
|
|
|
|
|
error[E0720]: cannot resolve opaque type
|
|
|
|
|
--> $DIR/recursive-in-exhaustiveness.rs:27:23
|
|
|
|
|
|
|
|
|
|
|
LL | fn build2<T>(x: T) -> impl Sized {
|
2025-04-05 18:06:47 +00:00
|
|
|
| ^^^^^^^^^^
|
2025-04-07 22:32:49 +00:00
|
|
|
|
2025-04-05 18:06:47 +00:00
|
|
|
error[E0720]: cannot resolve opaque type
|
2025-08-21 13:56:56 +02:00
|
|
|
--> $DIR/recursive-in-exhaustiveness.rs:37:23
|
2025-04-07 22:32:49 +00:00
|
|
|
|
|
|
|
|
|
LL | fn build3<T>(x: T) -> impl Sized {
|
2025-04-05 18:06:47 +00:00
|
|
|
| ^^^^^^^^^^
|
2025-04-07 22:32:49 +00:00
|
|
|
|
2025-04-05 18:06:47 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2025-04-07 22:32:49 +00:00
|
|
|
|
2025-04-05 18:06:47 +00:00
|
|
|
For more information about this error, try `rustc --explain E0720`.
|