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
parent edd40b8f64
commit 6912b84917
No known key found for this signature in database
GPG Key ID: AEFC88D11109D1AA
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) {
}
}