mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-26 13:01:27 +03:00
12 lines
215 B
Rust
12 lines
215 B
Rust
#[unsafe(no_mangle)]
|
|
pub fn no_mangle() {}
|
|
|
|
#[unsafe(link_section = "__TEXT,__here")]
|
|
pub fn link_section() {}
|
|
|
|
#[unsafe(export_name = "exonym")]
|
|
pub fn export_name() {}
|
|
|
|
#[non_exhaustive]
|
|
pub struct NonExhaustive;
|