dfmt/tests/issue0303.d

4 lines
185 B
D

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