commit 50f96d2ca161db0e821b4d08baf6bdb9938a5937 (tree) parent 52e06ce4f665b737d86fe6ab4d5d896e844d3eda Author: Andrew Kelley <andrew@ziglang.org> Date: Sun, 19 Apr 2026 10:08:23 -0700 std.Io.Dir: add type checking for those two functions Diffstat:
| M | lib/std/Io/Dir.zig | | | 5 | +++++ |
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/lib/std/Io/Dir.zig b/lib/std/Io/Dir.zig @@ -2038,3 +2038,8 @@ pub fn setTimestampsNow( .modify_timestamp = .now, }); } + +test { + _ = &setFileOwner; + _ = &setTimestampsNow; +}