rust/tests/ui/lint/opaque-ty-ffi-unsafe.rs
2023-01-11 09:32:08 +00:00

16 lines
258 B
Rust

#![feature(type_alias_impl_trait)]
#![deny(improper_ctypes)]
type A = impl Fn();
pub fn ret_closure() -> A {
|| {}
}
extern "C" {
pub fn a(_: A);
//~^ ERROR `extern` block uses type `A`, which is not FFI-safe [improper_ctypes]
}
fn main() {}