rust/tests/run-make/symbol-mangling-hashed/b_dylib.rs

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

10 lines
130 B
Rust
Raw Normal View History

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