diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-01-31 01:51:15 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-01-31 01:51:31 -0500 |
| commit | 5161d70620342749b1995fdaabb39220654cc941 (patch) | |
| tree | ba940c1a85386f1866cd75aab67809b4c0c95755 /std/special/test_runner.zig | |
| parent | 40ca39d3d5a556e3b5d7298e3a5182f4351bdd17 (diff) | |
| download | zig-5161d70620342749b1995fdaabb39220654cc941.tar.gz zig-5161d70620342749b1995fdaabb39220654cc941.zip | |
*WIP* error sets
Diffstat (limited to 'std/special/test_runner.zig')
| -rw-r--r-- | std/special/test_runner.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/special/test_runner.zig b/std/special/test_runner.zig index 3284f740b0..76a54a5018 100644 --- a/std/special/test_runner.zig +++ b/std/special/test_runner.zig @@ -4,7 +4,7 @@ const builtin = @import("builtin"); const test_fn_list = builtin.__zig_test_fn_slice; const warn = std.debug.warn; -pub fn main() %void { +pub fn main() !void { for (test_fn_list) |test_fn, i| { warn("Test {}/{} {}...", i + 1, test_fn_list.len, test_fn.name); |
