mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 20:17:50 +00:00
13 lines
164 B
Rust
13 lines
164 B
Rust
//@ build-pass
|
|
|
|
#[unsafe(no_mangle)]
|
|
fn a() {}
|
|
|
|
#[unsafe(export_name = "foo")]
|
|
fn b() {}
|
|
|
|
#[cfg_attr(any(), unsafe(no_mangle))]
|
|
static VAR2: u32 = 1;
|
|
|
|
fn main() {}
|