rust/tests/run-make/staticlib-dylib-linkage/bar.rs

6 lines
67 B
Rust

#![crate_type = "dylib"]
pub fn bar() {
println!("hello!");
}