dfmt/tests/otbs/issue0303.d.ref

11 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();