mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-27 12:48:20 +00:00

- Use `object` based test logic instead of processing `nm` human-readable textual output. - Try to expand test coverage to not be limited to only linux + x86_64. Co-authored-by: binarycat <binarycat@envs.net>
10 lines
158 B
Rust
10 lines
158 B
Rust
#![crate_type = "dylib"]
|
|
|
|
extern crate hashed_dylib;
|
|
extern crate hashed_rlib;
|
|
|
|
pub fn ddhello() {
|
|
hashed_rlib::hrhello();
|
|
hashed_dylib::hdhello();
|
|
}
|