]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-16250.stderr
Rollup merge of #102313 - anirudh24seven:update_sleep_ms_doc, r=Mark-Simulacrum
[rust.git] / src / test / ui / issues / issue-16250.stderr
1 error: `extern` block uses type `Foo`, which is not FFI-safe
2   --> $DIR/issue-16250.rs:6:20
3    |
4 LL |     pub fn foo(x: (Foo));
5    |                    ^^^ not FFI-safe
6    |
7    = help: consider adding a `#[repr(C)]` or `#[repr(transparent)]` attribute to this struct
8    = note: this struct has unspecified layout
9 note: the type is defined here
10   --> $DIR/issue-16250.rs:3:1
11    |
12 LL | pub struct Foo;
13    | ^^^^^^^^^^^^^^
14 note: the lint level is defined here
15   --> $DIR/issue-16250.rs:1:9
16    |
17 LL | #![deny(warnings)]
18    |         ^^^^^^^^
19    = note: `#[deny(improper_ctypes)]` implied by `#[deny(warnings)]`
20
21 error: aborting due to previous error
22