zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit ba575595bb61d95e5304ea6f1ecd125c18a66617 (tree)
parent d661f0f35ba5c5600c3547b52e6fbca34991702b
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Mon, 26 Feb 2024 22:53:17 -0700

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/.

Diffstat:
Mlib/std/zig.zig | 4----
1 file changed, 0 insertions(+), 4 deletions(-)

diff --git 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"); }