diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-12-08 18:07:55 -0800 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-12-23 22:15:08 -0800 |
| commit | a91c6dc71d42ea59ec53ce4e0ae83e4970731313 (patch) | |
| tree | 815a549f1f16d6c6ce37d6f2d3034c484bb18ca9 /test/incremental/move_src | |
| parent | 1dcfc8787e86ed94d216976e621a49fc488e8214 (diff) | |
| download | zig-a91c6dc71d42ea59ec53ce4e0ae83e4970731313.tar.gz zig-a91c6dc71d42ea59ec53ce4e0ae83e4970731313.zip | |
test: std.fs.File -> std.Io.File
Diffstat (limited to 'test/incremental/move_src')
| -rw-r--r-- | test/incremental/move_src | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/incremental/move_src b/test/incremental/move_src index 4f43e8ea6a..d6a21fc562 100644 --- a/test/incremental/move_src +++ b/test/incremental/move_src @@ -7,7 +7,7 @@ #file=main.zig const std = @import("std"); pub fn main() !void { - var stdout_writer = std.fs.File.stdout().writerStreaming(&.{}); + var stdout_writer = std.Io.File.stdout().writerStreaming(&.{}); try stdout_writer.interface.print("{d} {d}\n", .{ foo(), bar() }); } fn foo() u32 { @@ -22,7 +22,7 @@ fn bar() u32 { #file=main.zig const std = @import("std"); pub fn main() !void { - var stdout_writer = std.fs.File.stdout().writerStreaming(&.{}); + var stdout_writer = std.Io.File.stdout().writerStreaming(&.{}); try stdout_writer.interface.print("{d} {d}\n", .{ foo(), bar() }); } |
