2024-10-26 11:31:24 +00:00
|
|
|
//@ compile-flags: -Zunpretty=normal
|
|
|
|
//@ check-pass
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
extern "C" fn foo() {}
|
|
|
|
|
2024-10-26 11:33:36 +00:00
|
|
|
#[unsafe(no_mangle)]
|
2024-10-26 11:31:24 +00:00
|
|
|
extern "C" fn bar() {}
|
|
|
|
|
|
|
|
#[cfg_attr(FALSE, unsafe(no_mangle))]
|
|
|
|
extern "C" fn zoo() {}
|