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

error: aborting due to previous error

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