diff options
| author | Shawn Landden <shawn@git.icu> | 2020-01-19 22:05:38 +0400 |
|---|---|---|
| committer | Shawn Landden <shawn@git.icu> | 2020-01-19 22:05:38 +0400 |
| commit | de07ca77e7310af23fa494defbf7cc235afdac68 (patch) | |
| tree | bc9fa66d7f84069ff92464e92c39f1ef148a2f32 /lib | |
| parent | 7bb4c855ad3776d7f7d21f2bf1c5c93366205ff2 (diff) | |
| download | zig-de07ca77e7310af23fa494defbf7cc235afdac68.tar.gz zig-de07ca77e7310af23fa494defbf7cc235afdac68.zip | |
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 (limited to 'lib')
| -rw-r--r-- | lib/std/rb.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/rb.zig b/lib/std/rb.zig index c41a269a27..0e87eb1eb6 100644 --- 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; |
