about summary refs log tree commit diff
path: root/tests/ui/recursion/recursive-enum.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/recursion/recursive-enum.stderr')
-rw-r--r--tests/ui/recursion/recursive-enum.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/recursion/recursive-enum.stderr b/tests/ui/recursion/recursive-enum.stderr
new file mode 100644
index 00000000000..d662d102203
--- /dev/null
+++ b/tests/ui/recursion/recursive-enum.stderr
@@ -0,0 +1,14 @@
+error[E0072]: recursive type `List` has infinite size
+  --> $DIR/recursive-enum.rs:1:1
+   |
+LL | enum List<T> { Cons(T, List<T>), Nil }
+   | ^^^^^^^^^^^^           ------- recursive without indirection
+   |
+help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle
+   |
+LL | enum List<T> { Cons(T, Box<List<T>>), Nil }
+   |                        ++++       +
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0072`.