diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-04-22 19:48:12 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-04-22 19:48:12 -0700 |
| commit | 8df4bb7c968a41a9fca4fe56f48ccee90d2e551e (patch) | |
| tree | a00a0ebb7194ba1a71e77ce965aef9d889e6b8d5 | |
| parent | ce41ddcd2382ef9c3866ccdf25a526a8eca5fe51 (diff) | |
| download | zig-8df4bb7c968a41a9fca4fe56f48ccee90d2e551e.tar.gz zig-8df4bb7c968a41a9fca4fe56f48ccee90d2e551e.zip | |
stage2: fix builtin.zig for `zig test`
| -rw-r--r-- | src/Compilation.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index cab4ba5e15..d4d4228608 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) { |
