Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
test_empty_block.zig
pretty
plain
permalink
blame
history
•
9 lines
•
149 B
1
const std = @import("std");
2
const expectEqual = std.testing.expectEqual;
3
4
test {
5
const a = {};
6
try expectEqual(void, @TypeOf(a));
7
}
8
9
// test