summaryrefslogtreecommitdiffstats
path: root/src/test/ui/impl-trait/recursive-impl-trait-type-through-non-recursive.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/impl-trait/recursive-impl-trait-type-through-non-recursive.stderr')
-rw-r--r--src/test/ui/impl-trait/recursive-impl-trait-type-through-non-recursive.stderr47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/test/ui/impl-trait/recursive-impl-trait-type-through-non-recursive.stderr b/src/test/ui/impl-trait/recursive-impl-trait-type-through-non-recursive.stderr
new file mode 100644
index 000000000..b514e9fef
--- /dev/null
+++ b/src/test/ui/impl-trait/recursive-impl-trait-type-through-non-recursive.stderr
@@ -0,0 +1,47 @@
+error[E0720]: cannot resolve opaque type
+ --> $DIR/recursive-impl-trait-type-through-non-recursive.rs:7:22
+ |
+LL | fn id<T>(t: T) -> impl Sized { t }
+ | ---------- returning this opaque type `impl Sized`
+LL |
+LL | fn recursive_id() -> impl Sized {
+ | ^^^^^^^^^^ recursive opaque type
+LL | id(recursive_id2())
+ | ------------------- returning here with type `impl Sized`
+
+error[E0720]: cannot resolve opaque type
+ --> $DIR/recursive-impl-trait-type-through-non-recursive.rs:11:23
+ |
+LL | fn id<T>(t: T) -> impl Sized { t }
+ | ---------- returning this opaque type `impl Sized`
+...
+LL | fn recursive_id2() -> impl Sized {
+ | ^^^^^^^^^^ recursive opaque type
+LL | id(recursive_id())
+ | ------------------ returning here with type `impl Sized`
+
+error[E0720]: cannot resolve opaque type
+ --> $DIR/recursive-impl-trait-type-through-non-recursive.rs:17:24
+ |
+LL | fn wrap<T>(t: T) -> impl Sized { (t,) }
+ | ---------- returning this opaque type `impl Sized`
+LL |
+LL | fn recursive_wrap() -> impl Sized {
+ | ^^^^^^^^^^ recursive opaque type
+LL | wrap(recursive_wrap2())
+ | ----------------------- returning here with type `impl Sized`
+
+error[E0720]: cannot resolve opaque type
+ --> $DIR/recursive-impl-trait-type-through-non-recursive.rs:21:25
+ |
+LL | fn wrap<T>(t: T) -> impl Sized { (t,) }
+ | ---------- returning this opaque type `impl Sized`
+...
+LL | fn recursive_wrap2() -> impl Sized {
+ | ^^^^^^^^^^ recursive opaque type
+LL | wrap(recursive_wrap())
+ | ---------------------- returning here with type `impl Sized`
+
+error: aborting due to 4 previous errors
+
+For more information about this error, try `rustc --explain E0720`.