dfmt/tests/otbs/issue0303.d.ref

11 lines
244 B
Plaintext

static foreach (thing; things) {
pragma(msg, thing);
}
static foreach_reverse (thing; things) {
pragma(msg, thing);
}
static foreach (thing; things)
pragma(msg, thing);
static foreach_reverse (thing; things)
pragma(msg, thing);