mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
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:
parent
c43803575d
commit
1e765fb781
1 changed files with 12 additions and 0 deletions
12
tests/knr/space_after_keywords.d.ref
Normal file
12
tests/knr/space_after_keywords.d.ref
Normal 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) {
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue