summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/opaque-ty-ffi-unsafe.stderr
blob: 33aa95854e3064f6bb8ac735f009646b4180e07a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: `extern` block uses type `A`, which is not FFI-safe
  --> $DIR/opaque-ty-ffi-unsafe.rs:11:17
   |
LL |     pub fn a(_: A);
   |                 ^ not FFI-safe
   |
   = note: opaque types have no C equivalent
note: the lint level is defined here
  --> $DIR/opaque-ty-ffi-unsafe.rs:2:9
   |
LL | #![deny(improper_ctypes)]
   |         ^^^^^^^^^^^^^^^

error: aborting due to previous error