Files
zig/doc/langref/test_empty_block.zig
T
2026-04-30 09:03:58 +01:00

10 lines
149 B
Zig

const std = @import("std");
const expectEqual = std.testing.expectEqual;
test {
const a = {};
try expectEqual(void, @TypeOf(a));
}
// test