summaryrefslogtreecommitdiffstats
path: root/tests/ui/union/union-with-drop-fields.thirunsafeck.stderr
blob: 93fe996d2a477deb3f95b537051a4cc0ebe7407e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
error[E0740]: unions cannot contain fields that may need dropping
  --> $DIR/union-with-drop-fields.rs:11:5
   |
LL |     a: String,
   |     ^^^^^^^^^
   |
   = note: a type is guaranteed not to need dropping when it implements `Copy`, or when it is the special `ManuallyDrop<_>` type
help: when the type does not implement `Copy`, wrap it inside a `ManuallyDrop<_>` and ensure it is manually dropped
   |
LL |     a: std::mem::ManuallyDrop<String>,
   |        +++++++++++++++++++++++      +

error[E0740]: unions cannot contain fields that may need dropping
  --> $DIR/union-with-drop-fields.rs:19:5
   |
LL |     a: S,
   |     ^^^^
   |
   = note: a type is guaranteed not to need dropping when it implements `Copy`, or when it is the special `ManuallyDrop<_>` type
help: when the type does not implement `Copy`, wrap it inside a `ManuallyDrop<_>` and ensure it is manually dropped
   |
LL |     a: std::mem::ManuallyDrop<S>,
   |        +++++++++++++++++++++++ +

error[E0740]: unions cannot contain fields that may need dropping
  --> $DIR/union-with-drop-fields.rs:24:5
   |
LL |     a: T,
   |     ^^^^
   |
   = note: a type is guaranteed not to need dropping when it implements `Copy`, or when it is the special `ManuallyDrop<_>` type
help: when the type does not implement `Copy`, wrap it inside a `ManuallyDrop<_>` and ensure it is manually dropped
   |
LL |     a: std::mem::ManuallyDrop<T>,
   |        +++++++++++++++++++++++ +

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0740`.