dfmt/tests/allman/issue0303.d.ref

13 lines
208 B
Plaintext

static foreach (thing; things)
{
doStuff();
}
static foreach_reverse (thing; things)
{
doStuff();
}
static foreach (thing; things)
doStuff();
static foreach_reverse (thing; things)
doStuff();