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

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

10 lines
145 B
Rust
Raw Normal View History

extern crate a_rlib;
extern crate a_dylib;
extern crate b_dylib;
fn main() {
a_rlib::hello();
a_dylib::hello();
b_dylib::hello();
}