]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-3779.stderr
Auto merge of #79113 - andjo403:raw_vec_ptr, r=m-ou-se
[rust.git] / src / test / ui / issues / issue-3779.stderr
1 error[E0072]: recursive type `S` has infinite size
2   --> $DIR/issue-3779.rs:1:1
3    |
4 LL | struct S {
5    | ^^^^^^^^ recursive type has infinite size
6 LL |
7 LL |     element: Option<S>
8    |              --------- recursive without indirection
9    |
10 help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to make `S` representable
11    |
12 LL |     element: Box<Option<S>>
13    |              ^^^^         ^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0072`.