rust/src/test/ui/issues/issue-16250.stderr
2018-12-25 21:08:33 -07:00

22 lines
631 B
Plaintext

error: `extern` block uses type `Foo` which is not FFI-safe: this struct has unspecified layout
--> $DIR/issue-16250.rs:6:20
|
LL | pub fn foo(x: (Foo)); //~ ERROR unspecified layout
| ^^^
|
note: lint level defined here
--> $DIR/issue-16250.rs:1:9
|
LL | #![deny(warnings)]
| ^^^^^^^^
= note: #[deny(improper_ctypes)] implied by #[deny(warnings)]
= help: consider adding a #[repr(C)] or #[repr(transparent)] attribute to this struct
note: type defined here
--> $DIR/issue-16250.rs:3:1
|
LL | pub struct Foo;
| ^^^^^^^^^^^^^^^
error: aborting due to previous error