mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
29 lines
753 B
Text
29 lines
753 B
Text
#target=x86_64-linux-selfhosted
|
|
#target=x86_64-linux-cbe
|
|
#target=x86_64-windows-cbe
|
|
#target=wasm32-wasi-selfhosted
|
|
#update=initial version
|
|
#file=main.zig
|
|
pub fn main() !void {
|
|
try foo(false);
|
|
}
|
|
fn foo(recurse: bool) !void {
|
|
const stdout = std.fs.File.stdout();
|
|
if (recurse) return foo(true);
|
|
try stdout.writeAll("non-recursive path\n");
|
|
}
|
|
const std = @import("std");
|
|
#expect_stdout="non-recursive path\n"
|
|
|
|
#update=eliminate recursion and change argument
|
|
#file=main.zig
|
|
pub fn main() !void {
|
|
try foo(true);
|
|
}
|
|
fn foo(recurse: bool) !void {
|
|
const stdout = std.fs.File.stdout();
|
|
if (recurse) return stdout.writeAll("x==1\n");
|
|
try stdout.writeAll("non-recursive path\n");
|
|
}
|
|
const std = @import("std");
|
|
#expect_stdout="x==1\n"
|