rust/tests/run-make/mixing-libs/dylib.rs

7 lines
81 B
Rust

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