12 lines
212 B
Rust
12 lines
212 B
Rust
![]() |
//@ known-bug: #120175
|
||
|
//@ needs-rustc-debug-assertions
|
||
|
|
||
|
#![feature(extern_types)]
|
||
|
|
||
|
#[link(name = "bar", import_name_type = "decorated", kind = "raw-dylib")]
|
||
|
extern "C" {
|
||
|
pub type CrossCrate;
|
||
|
}
|
||
|
|
||
|
fn main() {}
|