aboutsummaryrefslogtreecommitdiff
path: root/std/index.zig
diff options
context:
space:
mode:
Diffstat (limited to 'std/index.zig')
-rw-r--r--std/index.zig3
1 files changed, 3 insertions, 0 deletions
diff --git a/std/index.zig b/std/index.zig
index 3b523f519f..2f4cfb7553 100644
--- a/std/index.zig
+++ b/std/index.zig
@@ -36,6 +36,8 @@ pub const sort = @import("sort.zig");
pub const unicode = @import("unicode.zig");
pub const zig = @import("zig/index.zig");
+pub const lazyInit = @import("lazy_init.zig").lazyInit;
+
test "std" {
// run tests from these
_ = @import("atomic/index.zig");
@@ -71,4 +73,5 @@ test "std" {
_ = @import("sort.zig");
_ = @import("unicode.zig");
_ = @import("zig/index.zig");
+ _ = @import("lazy_init.zig");
}