dfmt/tests/allman/space_after_keywords.d.ref

16 lines
176 B
Plaintext

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