about summary refs log tree commit diff
path: root/tests/run-make/symbol-visibility/a_cdylib.rs
blob: cc034c8a31e5570b02e7988e0294dfc7fb46a97b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![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();
}