diff options
| author | klensy <klensy@users.noreply.github.com> | 2024-04-25 13:17:29 +0300 | 
|---|---|---|
| committer | klensy <klensy@users.noreply.github.com> | 2024-04-27 10:54:31 +0300 | 
| commit | 411607bec493ac02c6038714561b52008f097a02 (patch) | |
| tree | e444e9c4f0da065bcba9de9b4b6235d5879927fa /tests/ui/structs-enums/struct-rec/mutual-struct-recursion.stderr | |
| parent | 6acb9e75ebc936df737381a9d0b7a7bccd6f0b2f (diff) | |
| download | rust-411607bec493ac02c6038714561b52008f097a02.tar.gz rust-411607bec493ac02c6038714561b52008f097a02.zip | |
tests: remove some trailing ws
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>>>>, | | 
