mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +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
|