Files
rust/tests/rustdoc-html/inline_cross/auxiliary/attributes.rs
T
2026-04-25 20:06:30 +02:00

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;