summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-72554.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-72554.stderr')
-rw-r--r--src/test/ui/issues/issue-72554.stderr31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-72554.stderr b/src/test/ui/issues/issue-72554.stderr
new file mode 100644
index 000000000..3e5adcae1
--- /dev/null
+++ b/src/test/ui/issues/issue-72554.stderr
@@ -0,0 +1,31 @@
+error[E0072]: recursive type `ElemDerived` has infinite size
+ --> $DIR/issue-72554.rs:4:1
+ |
+LL | pub enum ElemDerived {
+ | ^^^^^^^^^^^^^^^^^^^^ recursive type has infinite size
+...
+LL | A(ElemDerived)
+ | ----------- recursive without indirection
+ |
+help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to make `ElemDerived` representable
+ |
+LL | A(Box<ElemDerived>)
+ | ++++ +
+
+error[E0391]: cycle detected when computing drop-check constraints for `ElemDerived`
+ --> $DIR/issue-72554.rs:4:1
+ |
+LL | pub enum ElemDerived {
+ | ^^^^^^^^^^^^^^^^^^^^
+ |
+ = note: ...which immediately requires computing drop-check constraints for `ElemDerived` again
+note: cycle used when computing drop-check constraints for `Elem`
+ --> $DIR/issue-72554.rs:11:1
+ |
+LL | pub enum Elem {
+ | ^^^^^^^^^^^^^
+
+error: aborting due to 2 previous errors
+
+Some errors have detailed explanations: E0072, E0391.
+For more information about an error, try `rustc --explain E0072`.