diff options
Diffstat (limited to 'tests/ui/issues/issue-17431-5.stderr')
-rw-r--r-- | tests/ui/issues/issue-17431-5.stderr | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/ui/issues/issue-17431-5.stderr b/tests/ui/issues/issue-17431-5.stderr deleted file mode 100644 index 44a90a6fe..000000000 --- a/tests/ui/issues/issue-17431-5.stderr +++ /dev/null @@ -1,14 +0,0 @@ -error[E0072]: recursive type `Bar` has infinite size - --> $DIR/issue-17431-5.rs:5:1 - | -LL | struct Bar<T> { x: Bar<Foo> , marker: marker::PhantomData<T> } - | ^^^^^^^^^^^^^ -------- recursive without indirection - | -help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle - | -LL | struct Bar<T> { x: Box<Bar<Foo>> , marker: marker::PhantomData<T> } - | ++++ + - -error: aborting due to previous error - -For more information about this error, try `rustc --explain E0072`. |