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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
67 B
Rust
Raw Normal View History

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