rustc/tests/rustdoc/auxiliary/rustdoc-ffi.rs
2024-10-21 11:08:01 +02:00

7 lines
161 B
Rust

#![crate_type="lib"]
extern "C" {
//@ has lib/fn.foreigner.html //pre 'pub unsafe fn foreigner(cold_as_ice: u32)'
pub fn foreigner(cold_as_ice: u32);
}