]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-17431-7.stderr
New upstream version 1.46.0~beta.2+dfsg1
[rustc.git] / src / test / ui / issues / issue-17431-7.stderr
1 error[E0072]: recursive type `Foo` has infinite size
2 --> $DIR/issue-17431-7.rs:1:1
3 |
4 LL | enum Foo { Voo(Option<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 `Foo` representable
10 |
11 LL | enum Foo { Voo(Box<Option<Option<Foo>>>) }
12 | ^^^^ ^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0072`.