commit 8df4bb7c968a41a9fca4fe56f48ccee90d2e551e (tree) parent ce41ddcd2382ef9c3866ccdf25a526a8eca5fe51 Author: Andrew Kelley <andrew@ziglang.org> Date: Thu, 22 Apr 2021 19:48:12 -0700 stage2: fix builtin.zig for `zig test` Diffstat:
| M | src/Compilation.zig | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Compilation.zig b/src/Compilation.zig @@ -3381,7 +3381,7 @@ pub fn generateBuiltinZigSource(comp: *Compilation, allocator: *Allocator) Alloc if (comp.bin_file.options.is_test) { try buffer.appendSlice( - \\pub var test_functions: []TestFn = undefined; // overwritten later + \\pub var test_functions: []std.builtin.TestFn = undefined; // overwritten later \\ ); if (comp.test_evented_io) {