dfmt/tests/otbs/space_after_keywords.d.ref

12 lines
164 B
Plaintext

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