aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorVeikka Tuominen <git@vexu.eu>2023-05-03 11:49:55 +0300
committerAndrew Kelley <andrew@ziglang.org>2023-05-03 20:55:29 -0700
commit3f3b1a6808113fd5f9b2cec1033009cbb17dc969 (patch)
tree7893be58b9b8c8edfffdc8127a6b133ec823e141 /test/tests.zig
parent5def162391da5050761beb3e6efb24b99716fc99 (diff)
downloadzig-3f3b1a6808113fd5f9b2cec1033009cbb17dc969.tar.gz
zig-3f3b1a6808113fd5f9b2cec1033009cbb17dc969.zip
std.Build: use Step.* instead of *Step
Follow up to 13eb7251d37759bd47403db304c6120c706fe353
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests.zig b/test/tests.zig
index 7ec1aaaa65..641914aabe 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -1132,7 +1132,7 @@ pub fn addCases(
b: *std.Build,
parent_step: *Step,
opt_test_filter: ?[]const u8,
- check_case_exe: *std.Build.CompileStep,
+ check_case_exe: *std.Build.Step.Compile,
) !void {
const arena = b.allocator;
const gpa = b.allocator;