rust/src/test/ui/issues/issue-16250.stderr

22 lines
634 B
Plaintext
Raw Normal View History

2018-07-15 14:11:54 -07:00
error: `extern` block uses type `Foo` which is not FFI-safe: this struct has unspecified layout
--> $DIR/issue-16250.rs:16:20
|
LL | pub fn foo(x: (Foo)); //~ ERROR unspecified layout
| ^^^
|
note: lint level defined here
--> $DIR/issue-16250.rs:11: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:13:1
|
LL | pub struct Foo;
| ^^^^^^^^^^^^^^^
error: aborting due to previous error