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/function_becomes_inline | |
| parent | 1dcfc8787e86ed94d216976e621a49fc488e8214 (diff) | |
| download | zig-a91c6dc71d42ea59ec53ce4e0ae83e4970731313.tar.gz zig-a91c6dc71d42ea59ec53ce4e0ae83e4970731313.zip | |
test: std.fs.File -> std.Io.File
Diffstat (limited to 'test/incremental/function_becomes_inline')
| -rw-r--r-- | test/incremental/function_becomes_inline | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/incremental/function_becomes_inline b/test/incremental/function_becomes_inline index 240d7a54af..07cd98ef28 100644 --- a/test/incremental/function_becomes_inline +++ b/test/incremental/function_becomes_inline @@ -8,7 +8,7 @@ pub fn main() !void { try foo(); } fn foo() !void { - try std.fs.File.stdout().writeAll("Hello, World!\n"); + try std.Io.File.stdout().writeAll("Hello, World!\n"); } const std = @import("std"); #expect_stdout="Hello, World!\n" @@ -19,7 +19,7 @@ pub fn main() !void { try foo(); } inline fn foo() !void { - try std.fs.File.stdout().writeAll("Hello, World!\n"); + try std.Io.File.stdout().writeAll("Hello, World!\n"); } const std = @import("std"); #expect_stdout="Hello, World!\n" @@ -30,7 +30,7 @@ pub fn main() !void { try foo(); } inline fn foo() !void { - try std.fs.File.stdout().writeAll("Hello, `inline` World!\n"); + try std.Io.File.stdout().writeAll("Hello, `inline` World!\n"); } const std = @import("std"); #expect_stdout="Hello, `inline` World!\n" |
