mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
483 B
Plaintext
16 lines
483 B
Plaintext
error: `extern` block uses type `AliasB`, which is not FFI-safe
|
|
--> $DIR/opaque-ty-ffi-normalization-cycle.rs:37:21
|
|
|
|
|
LL | fn lint_me() -> <AliasB as TraitB>::Assoc;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ not FFI-safe
|
|
|
|
|
= note: opaque types have no C equivalent
|
|
note: the lint level is defined here
|
|
--> $DIR/opaque-ty-ffi-normalization-cycle.rs:3:9
|
|
|
|
|
LL | #![deny(improper_ctypes)]
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|