zig

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

commit de07ca77e7310af23fa494defbf7cc235afdac68 (tree)
parent 7bb4c855ad3776d7f7d21f2bf1c5c93366205ff2
Author: Shawn Landden <shawn@git.icu>
Date:   Sun, 19 Jan 2020 22:05:38 +0400

rb: just use @include("std")

we already have to use --override-std-dir
when running std tests, and having it this way
makes it much easier to run just the tests of this file.

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

diff --git a/lib/std/rb.zig b/lib/std/rb.zig @@ -1,4 +1,4 @@ -const std = @import("std.zig"); +const std = @import("std"); const assert = std.debug.assert; const testing = std.testing; const Order = std.math.Order;