2018-08-08 07:28:26 -05:00
|
|
|
error: `extern` block uses type `W` which is not FFI-safe: this union has unspecified layout
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-repr-c.rs:15:22
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | static FOREIGN2: W;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-repr-c.rs:2:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | #![deny(improper_ctypes)]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
= help: consider adding a #[repr(C)] attribute to this union
|
|
|
|
note: type defined here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-repr-c.rs:9:1
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | / union W {
|
|
|
|
LL | | a: u8,
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|