diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-07-14 17:32:51 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-14 17:32:51 -0700 |
| commit | d404d8a3637bc30dffc736e5fa1a68b8af0e19cb (patch) | |
| tree | 2f668bf2a185fe788fa20753ae6d8462778c4204 /test/cases/compile_errors/compile_log.zig | |
| parent | 464537db62e1d4ca6bc1357135b0f6c451e48c17 (diff) | |
| parent | ad55fb7a209e1b9d41b8d4f1d3e48211ff20d2f9 (diff) | |
| download | zig-d404d8a3637bc30dffc736e5fa1a68b8af0e19cb.tar.gz zig-d404d8a3637bc30dffc736e5fa1a68b8af0e19cb.zip | |
Merge pull request #20593 from jacobly0/more-races
InternPool: fix more races
Diffstat (limited to 'test/cases/compile_errors/compile_log.zig')
| -rw-r--r-- | test/cases/compile_errors/compile_log.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cases/compile_errors/compile_log.zig b/test/cases/compile_errors/compile_log.zig index ac89cfd1b3..bbc4b82657 100644 --- a/test/cases/compile_errors/compile_log.zig +++ b/test/cases/compile_errors/compile_log.zig @@ -17,14 +17,14 @@ export fn baz() void { // target=native // // :6:5: error: found compile log statement -// :12:5: note: also here // :6:5: note: also here +// :12:5: note: also here // // Compile Log Output: // @as(*const [5:0]u8, "begin") // @as(*const [1:0]u8, "a"), @as(i32, 12), @as(*const [1:0]u8, "b"), @as([]const u8, "hi"[0..2]) // @as(*const [3:0]u8, "end") -// @as(comptime_int, 4) // @as(*const [5:0]u8, "begin") // @as(*const [1:0]u8, "a"), @as(i32, [runtime value]), @as(*const [1:0]u8, "b"), @as([]const u8, [runtime value]) // @as(*const [3:0]u8, "end") +// @as(comptime_int, 4) |
