mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 05:34:45 +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
146 B
Rust
7 lines
146 B
Rust
#![crate_type = "lib"]
|
|
|
|
extern "C" {
|
|
#[unsafe(ffi_pure)] //~ ERROR the `#[ffi_pure]` attribute is an experimental feature
|
|
pub fn foo();
|
|
}
|