diff options
Diffstat (limited to 'tests/ui/structs-enums/struct-rec/mutual-struct-recursion.stderr')
| -rw-r--r-- | tests/ui/structs-enums/struct-rec/mutual-struct-recursion.stderr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/structs-enums/struct-rec/mutual-struct-recursion.stderr b/tests/ui/structs-enums/struct-rec/mutual-struct-recursion.stderr index 881bc281936..afe523939ac 100644 --- a/tests/ui/structs-enums/struct-rec/mutual-struct-recursion.stderr +++ b/tests/ui/structs-enums/struct-rec/mutual-struct-recursion.stderr @@ -16,7 +16,7 @@ help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle | LL ~ y: Box<B<T>>, LL | } -LL | +LL | LL | struct B<T> { LL ~ z: Box<A<T>> | @@ -39,7 +39,7 @@ help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle | LL ~ y: Option<Option<Box<D<T>>>>, LL | } -LL | +LL | LL | struct D<T> { LL ~ z: Option<Option<Box<C<T>>>>, | |
