diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-04-25 23:48:03 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-25 23:48:03 -0700 |
| commit | 13101295b93fe8ec5467bbd6cdf758a2bf823945 (patch) | |
| tree | 18d88995a46b7b6d6d5fcb939463c27df1925eee /src/Compilation.zig | |
| parent | 295b8ca467da36cd1066395e7f50b6245f456573 (diff) | |
| parent | a1fcb516928d1ba1106ea715acd1f6feba95e977 (diff) | |
| download | zig-13101295b93fe8ec5467bbd6cdf758a2bf823945.tar.gz zig-13101295b93fe8ec5467bbd6cdf758a2bf823945.zip | |
Merge pull request #15454 from jacobly0/cbe-extern
cbe: implement `@extern`
Diffstat (limited to 'src/Compilation.zig')
| -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 00b691f780..f11f158e1b 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -5265,7 +5265,7 @@ pub fn generateBuiltinZigSource(comp: *Compilation, allocator: Allocator) Alloca if (comp.bin_file.options.is_test) { try buffer.appendSlice( - \\pub var test_functions: []std.builtin.TestFn = undefined; // overwritten later + \\pub var test_functions: []const std.builtin.TestFn = undefined; // overwritten later \\ ); if (comp.test_evented_io) { |
