From 8df4bb7c968a41a9fca4fe56f48ccee90d2e551e Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 22 Apr 2021 19:48:12 -0700 Subject: [PATCH] stage2: fix builtin.zig for `zig test` --- src/Compilation.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Compilation.zig b/src/Compilation.zig index cab4ba5e1583a15232b5832a7e74805b9eda480b..d4d4228608178a120f86911b2698c116df4787b9 100644 --- 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) { -- 2.54.0