$for ct-state not properly popped.

This commit is contained in:
Christoffer Lerno
2025-07-03 22:20:14 +02:00
parent b3e7f074e9
commit 9b3b4ae8be
3 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
fn int main()
{
$for var $i = 1; $i < 8; ++$i :
$endfor
$for var $i = 0; $i < 8; ++$i :
$endfor
const int[*] ABC = { 1, 2, 3 };
$foreach $i, $val : ABC:
$endforeach
$foreach $i, $val : ABC:
$endforeach
return 0;
}