From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- .../struct-rec/mutual-struct-recursion.stderr | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 tests/ui/structs-enums/struct-rec/mutual-struct-recursion.stderr (limited to 'tests/ui/structs-enums/struct-rec/mutual-struct-recursion.stderr') diff --git a/tests/ui/structs-enums/struct-rec/mutual-struct-recursion.stderr b/tests/ui/structs-enums/struct-rec/mutual-struct-recursion.stderr new file mode 100644 index 000000000..881bc2819 --- /dev/null +++ b/tests/ui/structs-enums/struct-rec/mutual-struct-recursion.stderr @@ -0,0 +1,49 @@ +error[E0072]: recursive types `A` and `B` have infinite size + --> $DIR/mutual-struct-recursion.rs:1:1 + | +LL | struct A { + | ^^^^^^^^^^^ +... +LL | y: B, + | ---- recursive without indirection +... +LL | struct B { + | ^^^^^^^^^^^ +LL | z: A + | ---- recursive without indirection + | +help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle + | +LL ~ y: Box>, +LL | } +LL | +LL | struct B { +LL ~ z: Box> + | + +error[E0072]: recursive types `C` and `D` have infinite size + --> $DIR/mutual-struct-recursion.rs:11:1 + | +LL | struct C { + | ^^^^^^^^^^^ +... +LL | y: Option>>, + | ---- recursive without indirection +... +LL | struct D { + | ^^^^^^^^^^^ +LL | z: Option>>, + | ---- recursive without indirection + | +help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle + | +LL ~ y: Option>>>, +LL | } +LL | +LL | struct D { +LL ~ z: Option>>>, + | + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0072`. -- cgit v1.2.3