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