about summary refs log tree commit diff
path: root/src/test/ui/recursion/recursive-enum.stderr
blob: f709ba6ff0a01adf84fc742545851bfc3fa4330b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0072]: recursive type `List` has infinite size
  --> $DIR/recursive-enum.rs:11:1
   |
LL | enum List<T> { Cons(T, List<T>), Nil }
   | ^^^^^^^^^^^^           ------- recursive without indirection
   | |
   | recursive type has infinite size
   |
   = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `List` representable

error: aborting due to previous error

For more information about this error, try `rustc --explain E0072`.