master
 1const std = @import("std");
 2const expect = std.testing.expect;
 3
 4test {
 5    const a = {};
 6    const b = void{};
 7    try expect(@TypeOf(a) == void);
 8    try expect(@TypeOf(b) == void);
 9    try expect(a == b);
10}
11
12// test