rustc/tests/rustdoc/auxiliary/rustdoc-ffi.rs
2023-08-02 10:33:26 +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);
}