rust/tests/run-make/symbol-visibility/a_cdylib.rs
2023-03-30 07:34:55 -05:00

13 lines
263 B
Rust

#![crate_type="cdylib"]
extern crate an_rlib;
// This should not be exported
pub fn public_rust_function_from_cdylib() {}
// This should be exported
#[no_mangle]
pub extern "C" fn public_c_function_from_cdylib() {
an_rlib::public_c_function_from_rlib();
}