]> git.proxmox.com Git - rustc.git/blame - src/test/ui/type/type-recursive-box-shadowed.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / type / type-recursive-box-shadowed.stderr
CommitLineData
5e7ed085
FG
1error[E0072]: recursive type `Foo` has infinite size
2 --> $DIR/type-recursive-box-shadowed.rs:7:1
3 |
4LL | struct Foo {
2b03887a 5 | ^^^^^^^^^^
5e7ed085
FG
6LL |
7LL | inner: Foo,
8 | --- recursive without indirection
9 |
2b03887a 10help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle
5e7ed085
FG
11 |
12LL | inner: Box<Foo>,
13 | ++++ +
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0072`.