aboutsummaryrefslogtreecommitdiff
path: root/test/incremental/remove_enum_field
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-12-08 18:07:55 -0800
committerAndrew Kelley <andrew@ziglang.org>2025-12-23 22:15:08 -0800
commita91c6dc71d42ea59ec53ce4e0ae83e4970731313 (patch)
tree815a549f1f16d6c6ce37d6f2d3034c484bb18ca9 /test/incremental/remove_enum_field
parent1dcfc8787e86ed94d216976e621a49fc488e8214 (diff)
downloadzig-a91c6dc71d42ea59ec53ce4e0ae83e4970731313.tar.gz
zig-a91c6dc71d42ea59ec53ce4e0ae83e4970731313.zip
test: std.fs.File -> std.Io.File
Diffstat (limited to 'test/incremental/remove_enum_field')
-rw-r--r--test/incremental/remove_enum_field4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/incremental/remove_enum_field b/test/incremental/remove_enum_field
index 02daf2a0fb..bbcf7718e9 100644
--- a/test/incremental/remove_enum_field
+++ b/test/incremental/remove_enum_field
@@ -10,7 +10,7 @@ const MyEnum = enum(u8) {
bar = 2,
};
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("{}\n", .{@intFromEnum(MyEnum.foo)});
}
const std = @import("std");
@@ -22,7 +22,7 @@ const MyEnum = enum(u8) {
bar = 2,
};
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("{}\n", .{@intFromEnum(MyEnum.foo)});
}
const std = @import("std");