Commit 8df4bb7c96

Andrew Kelley <andrew@ziglang.org>
2021-04-23 04:48:12
stage2: fix builtin.zig for `zig test`
1 parent ce41ddc
Changed files (1)
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) {