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

22 lines
631 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
2018-12-25 08:56:47 -07:00
--> $DIR/issue-16250.rs:6:20
2018-07-15 14:11:54 -07:00
|
LL | pub fn foo(x: (Foo)); //~ ERROR unspecified layout
| ^^^
|
note: lint level defined here
2018-12-25 08:56:47 -07:00
--> $DIR/issue-16250.rs:1:9
2018-07-15 14:11:54 -07:00
|
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
2018-12-25 08:56:47 -07:00
--> $DIR/issue-16250.rs:3:1
2018-07-15 14:11:54 -07:00
|
LL | pub struct Foo;
| ^^^^^^^^^^^^^^^
error: aborting due to previous error