summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/wasm-symbols-different-module/foo.rs
blob: a4ba7e714cc7753474efb79d1d9393100dcfca26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![crate_type = "cdylib"]

mod a {
    #[link(wasm_import_module = "a")]
    extern "C" {
        pub fn foo();
    }
}

mod b {
    #[link(wasm_import_module = "b")]
    extern "C" {
        pub fn foo();
    }
}

#[no_mangle]
pub fn start() {
    unsafe {
        a::foo();
        b::foo();
    }
}