From cf2dff2b1e3fa55fa5415d524200070d0d7aacfe Mon Sep 17 00:00:00 2001 From: Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> Date: Thu, 5 Jan 2023 09:13:28 +0100 Subject: Move /src/test to /tests --- .../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 00000000000..881bc281936 --- /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 1.4.1-3-g733a5