1const std = @import("std");
2const expectEqual = std.testing.expectEqual;
3
4test {
5 const a = {};
6 try expectEqual(void, @TypeOf(a));
7}
8
9// test