add knr test variant for no_space_after_keyword

The generator is so outdated and basic that it didn't generate this.
This commit is contained in:
WebFreak001 2023-07-26 16:12:02 +02:00 committed by Jan Jurzitza
parent c43803575d
commit 1e765fb781
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
void main(string[] args)
{
for(int i = 0; i < 10; ++i) {
if(i == 9)
break;
}
while(false) {
}
foreach(i; 0 .. 9) {
}
}