]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issue-3008-2.stderr
New upstream version 1.26.0+dfsg1
[rustc.git] / src / test / ui / issue-3008-2.stderr
1 error[E0072]: recursive type `bar` has infinite size
2 --> $DIR/issue-3008-2.rs:12:1
3 |
4 LL | struct bar { x: bar }
5 | ^^^^^^^^^^ ------ recursive without indirection
6 | |
7 | recursive type has infinite size
8 |
9 = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `bar` representable
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0072`.