authorgravatar for shawn@git.icuShawn Landden <shawn@git.icu> 2020-01-19 22:05:38+04:00
committergravatar for shawn@git.icuShawn Landden <shawn@git.icu> 2020-01-19 22:05:38+04:00
logde07ca77e7310af23fa494defbf7cc235afdac68
treebc9fa66d7f84069ff92464e92c39f1ef148a2f32
parent7bb4c855ad3776d7f7d21f2bf1c5c93366205ff2

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.

1 files changed, 1 insertions(+), 1 deletions(-)

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