rustc/tests/run-make/staticlib-dylib-linkage/bar.rs
2024-05-08 17:27:53 +02:00

6 lines
67 B
Rust

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