zig/test/behavior/byval_arg_var.zig
Andrew Kelley 4307436b99 move behavior tests from test/stage1/ to test/
And fix test cases to make them pass. This is in preparation for
starting to pass behavior tests with self-hosted.
2021-04-29 15:54:04 -07:00

28 lines
443 B
Zig

const std = @import("std");
var result: []const u8 = "wrong";
test "pass string literal byvalue to a generic var param" {
start();
blowUpStack(10);
std.testing.expect(std.mem.eql(u8, result, "string literal"));
}
fn start() void {
foo("string literal");
}
fn foo(x: anytype) void {
bar(x);
}
fn bar(x: anytype) void {
result = x;
}
fn blowUpStack(x: u32) void {
if (x == 0) return;
blowUpStack(x - 1);
}