mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-05 05:04:24 +00:00
13 lines
280 B
Rust
13 lines
280 B
Rust
|
// Regression test for the ICE described in #87496.
|
||
|
|
||
|
// check-pass
|
||
|
|
||
|
#[repr(transparent)]
|
||
|
struct TransparentCustomZst(());
|
||
|
extern "C" {
|
||
|
fn good17(p: TransparentCustomZst);
|
||
|
//~^ WARNING: `extern` block uses type `TransparentCustomZst`, which is not FFI-safe
|
||
|
}
|
||
|
|
||
|
fn main() {}
|