]> git.lizzy.rs Git - rust.git/blob - src/test/ui/union/union-nonrepresentable.stderr
Rollup merge of #100006 - jyn514:update-copy, r=dtolnay
[rust.git] / src / test / ui / union / union-nonrepresentable.stderr
1 error[E0072]: recursive type `U` has infinite size
2   --> $DIR/union-nonrepresentable.rs:1:1
3    |
4 LL | union U {
5    | ^^^^^^^
6 LL |     a: u8,
7 LL |     b: std::mem::ManuallyDrop<U>,
8    |                               - recursive without indirection
9    |
10 help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle
11    |
12 LL |     b: std::mem::ManuallyDrop<Box<U>>,
13    |                               ++++ +
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0072`.