mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 08:16:56 +00:00

the `no_mangle`, `link_section` and `export_name` attributes are exceptions, and can still be used without an unsafe in earlier editions
7 lines
148 B
Rust
7 lines
148 B
Rust
#![crate_type = "lib"]
|
|
|
|
extern "C" {
|
|
#[unsafe(ffi_const)] //~ ERROR the `#[ffi_const]` attribute is an experimental feature
|
|
pub fn foo();
|
|
}
|