master
1const a = @import("a.zig").hello;
2const b = @import("b.zig").hello;
3export fn foo() void {
4    _ = a();
5    _ = b();
6}