]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-17431-2.stderr
rustdoc: do not show primitives and keywords as private
[rust.git] / src / test / ui / issues / issue-17431-2.stderr
1 error[E0072]: recursive type `Baz` has infinite size
2   --> $DIR/issue-17431-2.rs:1:1
3    |
4 LL | struct Baz { q: Option<Foo> }
5    | ^^^^^^^^^^      ----------- recursive without indirection
6    | |
7    | recursive type has infinite size
8    |
9 help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to make `Baz` representable
10    |
11 LL | struct Baz { q: Box<Option<Foo>> }
12    |                 ++++           +
13
14 error[E0072]: recursive type `Foo` has infinite size
15   --> $DIR/issue-17431-2.rs:4:1
16    |
17 LL | struct Foo { q: Option<Baz> }
18    | ^^^^^^^^^^      ----------- recursive without indirection
19    | |
20    | recursive type has infinite size
21    |
22 help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to make `Foo` representable
23    |
24 LL | struct Foo { q: Box<Option<Baz>> }
25    |                 ++++           +
26
27 error: aborting due to 2 previous errors
28
29 For more information about this error, try `rustc --explain E0072`.