rust/tests/run-make/symbol-mangling-hashed/b_dylib.rs

10 lines
130 B
Rust

#![crate_type="dylib"]
extern crate a_rlib;
extern crate a_dylib;
pub fn hello() {
a_rlib::hello();
a_dylib::hello();
}