diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-05-28 14:19:08 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-05-28 14:19:08 -0700 |
| commit | 52b3daa90ee41ba7e059331cf7541eb8570ec236 (patch) | |
| tree | fd92ea0a7fc3b7a15f1d22f74ff3facb38d5d1d7 /test/compile_errors.zig | |
| parent | 9de2c1b76e2b38e35bb17cd0a3943a61c730da76 (diff) | |
| download | zig-52b3daa90ee41ba7e059331cf7541eb8570ec236.tar.gz zig-52b3daa90ee41ba7e059331cf7541eb8570ec236.zip | |
stage1: get test-compile-errors passing again
Diffstat (limited to 'test/compile_errors.zig')
| -rw-r--r-- | test/compile_errors.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/compile_errors.zig b/test/compile_errors.zig index 7e63460bfe..b2545d31f5 100644 --- a/test/compile_errors.zig +++ b/test/compile_errors.zig @@ -34,9 +34,9 @@ pub fn addCases(cases: *tests.CompileErrorContext) void { \\ const c: *S = &.{}; \\} , &[_][]const u8{ - "mp.zig:2:31: error: expected type '[][]const u8', found '*const struct:2:31'", - "mp.zig:5:33: error: expected type '*[2][]const u8', found '*const struct:5:33'", - "mp.zig:9:21: error: expected type '*S', found '*const struct:9:21'", + "tmp.zig:2:31: error: expected type '[][]const u8', found '*const struct:2:31'", + "tmp.zig:5:33: error: expected type '*[2][]const u8', found '*const struct:5:33'", + "tmp.zig:9:21: error: expected type '*S', found '*const struct:9:21'", }); cases.add("@Type() union payload is undefined", @@ -8416,6 +8416,6 @@ pub fn addCases(cases: *tests.CompileErrorContext) void { \\ var sequence = "repeat".*** 10; \\} , &[_][]const u8{ - "tmp.zig:2:30: error: `.*` can't be followed by `*`. Are you missing a space?", + "tmp.zig:2:30: error: `.*` cannot be followed by `*`. Are you missing a space?", }); } |
