From 4183c6f1a52959ab5eef540c8eec1758079554eb Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sat, 23 Dec 2017 22:08:53 -0500 Subject: move std/debug.zig to a subdirectory self hosted compiler parser tests do some fuzz testing --- std/array_list.zig | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'std/array_list.zig') diff --git a/std/array_list.zig b/std/array_list.zig index 04db4dd280..db5581dc08 100644 --- a/std/array_list.zig +++ b/std/array_list.zig @@ -1,6 +1,7 @@ -const debug = @import("debug.zig"); +const std = @import("index.zig"); +const debug = std.debug; const assert = debug.assert; -const mem = @import("mem.zig"); +const mem = std.mem; const Allocator = mem.Allocator; pub fn ArrayList(comptime T: type) -> type { -- cgit v1.2.3