mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
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() {}
|