mirror of
https://github.com/ziglang/zig.git
synced 2026-01-10 17:35:12 +00:00
10 lines
163 B
Zig
10 lines
163 B
Zig
const std = @import("std");
|
|
const expect = std.testing.expect;
|
|
const imports = @import("imports.zig");
|
|
|
|
const A = 456;
|
|
|
|
test {
|
|
try expect(imports.A == 123);
|
|
}
|