From ba575595bb61d95e5304ea6f1ecd125c18a66617 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 26 Feb 2024 22:53:17 -0700 Subject: [PATCH] std.zig: don't try to unit test a separate exe This results in "file exists in multiple modules" errors. A future commit should move these subcommands to outside std/. --- lib/std/zig.zig | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/std/zig.zig b/lib/std/zig.zig index a195889d77..1437fee2e6 100644 --- a/lib/std/zig.zig +++ b/lib/std/zig.zig @@ -911,8 +911,4 @@ test { _ = primitives; _ = string_literal; _ = system; - - // This is not standard library API; it is the standalone executable - // implementation of `zig fmt`. - _ = @import("zig/fmt.zig"); }