Add --max-macro-iterations to set macro iteration limit.

This commit is contained in:
Christoffer Lerno
2025-10-11 16:26:07 +02:00
parent ae33d1a206
commit 6eee760239
8 changed files with 30 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
fn int main()
{
$for var $i = 0; $i < 1000000000; $i++: // #error: Too many iterations in
$endfor
return 0;
}