mirror of
https://github.com/ziglang/zig.git
synced 2024-11-29 08:32:30 +00:00
9 lines
202 B
Zig
9 lines
202 B
Zig
const assert = @import("std").debug.assert;
|
|
const a_namespace = @import("cases/import/a_namespace.zig");
|
|
|
|
fn callFnViaNamespaceLookup() {
|
|
@setFnTest(this);
|
|
|
|
assert(a_namespace.foo() == 1234);
|
|
}
|