about summary refs log tree commit diff
path: root/tests/run-make/symbol-mangling-hashed/default_dylib.rs
blob: 986d1c7b74d212e79bec11346827aad8a26f458c (plain)
1
2
3
4
5
6
7
8
9
#![crate_type = "dylib"]

extern crate hashed_dylib;
extern crate hashed_rlib;

pub fn ddhello() {
    hashed_rlib::hrhello();
    hashed_dylib::hdhello();
}