mirror of
https://github.com/ziglang/zig.git
synced 2026-01-01 02:53:23 +00:00
16 lines
280 B
Zig
16 lines
280 B
Zig
const builtin = @import("builtin");
|
|
|
|
const A = struct {
|
|
B: type,
|
|
};
|
|
|
|
fn getA() A {
|
|
return A{ .B = u8 };
|
|
}
|
|
|
|
test "bug 1025" {
|
|
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
|
|
const a = getA();
|
|
try @import("std").testing.expect(a.B == u8);
|
|
}
|