zig

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

commit 2fb78430dbff206af24ecd5e7be163e624fdbb6f (tree)
parent 018262d537959701566f2dfece66a462c3bbc976
Author: mlugg <mlugg@mlugg.co.uk>
Date:   Tue, 20 Aug 2024 15:57:43 +0100

test: remove accidental hard tab

Diffstat:
Mtest/incremental/delete_comptime_decls | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/incremental/delete_comptime_decls b/test/incremental/delete_comptime_decls @@ -31,7 +31,7 @@ pub fn main() void {} comptime { const x: [*c]u8 = null; var runtime_len: usize = undefined; - runtime_len = 0; + runtime_len = 0; const y = x[0..runtime_len]; _ = y; }