aboutsummaryrefslogtreecommitdiff
path: root/test/link/wasm/extern-mangle/lib.zig
blob: d2f2126c7cc7fc1c1bc0d9ee5f128603cc77cfe5 (plain)
1
2
3
4
5
6
const a = @import("a.zig").hello;
const b = @import("b.zig").hello;
export fn foo() void {
    _ = a();
    _ = b();
}