blob: c826b20b65f295563f995947a9a4c078c97c6baf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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
|