mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 18:23:49 +00:00
12 lines
196 B
Rust
12 lines
196 B
Rust
//@ compile-flags: -Zunpretty=normal
|
|
//@ check-pass
|
|
|
|
#[no_mangle]
|
|
extern "C" fn foo() {}
|
|
|
|
#[unsafe(no_mangle)]
|
|
extern "C" fn bar() {}
|
|
|
|
#[cfg_attr(FALSE, unsafe(no_mangle))]
|
|
extern "C" fn zoo() {}
|