summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/opaque-ty-ffi-unsafe.stderr
blob: 7f5d1792bf12a467a8961d54c4c4defa197ebc58 (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:24
   |
LL |     pub(crate) 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 1 previous error