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

extern fn work(x: u32) u32;

pub fn main() !void {
    _ = work(mod.half(25));
}