aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/dep_duplicate_module/lib.zig
blob: 0a44f1a8ce4fac9540adae93d9675cc309d1fab8 (plain)
1
2
3
4
5
6
const std = @import("std");
const mod = @import("mod");

export fn work(x: u32) u32 {
    return mod.double(x);
}