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

10 lines
132 B
Rust

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