diff options
Diffstat (limited to 'test/incremental/change_struct_same_fields')
| -rw-r--r-- | test/incremental/change_struct_same_fields | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/incremental/change_struct_same_fields b/test/incremental/change_struct_same_fields index 7af1161326..ef8ffab52d 100644 --- a/test/incremental/change_struct_same_fields +++ b/test/incremental/change_struct_same_fields @@ -11,7 +11,7 @@ pub fn main() !void { try foo(&val); } fn foo(val: *const S) !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", .{ val.x, val.y }, @@ -28,7 +28,7 @@ pub fn main() !void { try foo(&val); } fn foo(val: *const S) !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", .{ val.x, val.y }, @@ -45,7 +45,7 @@ pub fn main() !void { try foo(&val); } fn foo(val: *const S) !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", .{ val.x, val.y }, |
