Skip to content

Commit

Permalink
add knr test variant for no_space_after_keyword
Browse files Browse the repository at this point in the history
The generator is so outdated and basic that it didn't generate this.
  • Loading branch information
WebFreak001 committed Jul 26, 2023
1 parent c438035 commit 1e765fb
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/knr/space_after_keywords.d.ref
Original file line number Diff line number Diff line change
@@ -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) {
}
}

0 comments on commit 1e765fb

Please sign in to comment.