mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-04 16:53:26 +03:00
10 lines
149 B
Zig
10 lines
149 B
Zig
const std = @import("std");
|
|
const expectEqual = std.testing.expectEqual;
|
|
|
|
test {
|
|
const a = {};
|
|
try expectEqual(void, @TypeOf(a));
|
|
}
|
|
|
|
// test
|