mirror of
https://github.com/ziglang/zig.git
synced 2026-01-04 04:25:05 +00:00
10 lines
138 B
Zig
10 lines
138 B
Zig
test "foo" {
|
|
comptime {
|
|
@setEvalBranchQuota(1001);
|
|
var i = 0;
|
|
while (i < 1001) : (i += 1) {}
|
|
}
|
|
}
|
|
|
|
// test
|