zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 55dfe729b480c2ba121c6f650d160921560d9535 (tree)
parent 93291cc4722d51afbba7378fab5cfb25da175a79
Author: Felix (xq) Queißner <git@mq32.de>
Date:   Mon, 28 Sep 2020 11:44:55 +0200

Changes comptime block to test.

Diffstat:
Mlib/std/meta.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/meta.zig b/lib/std/meta.zig @@ -867,7 +867,7 @@ pub fn ArgsTuple(comptime Function: type) type { }); } -comptime { +test "ArgsTuple" { const T = struct { fn assertTypeEqual(comptime Expected: type, comptime Actual: type) void { if (Expected != Actual)