Commit ba575595bb

Andrew Kelley <andrew@ziglang.org>
2024-02-27 06:53:17
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/.
1 parent d661f0f
Changed files (1)
lib
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");
 }