Fix test
This commit is contained in:
parent
abc3e6d47e
commit
8cd9265384
tests
|
@ -1,12 +1,12 @@
|
|||
static foreach (thing; things)
|
||||
{
|
||||
doStuff();
|
||||
pragma(msg, thing);
|
||||
}
|
||||
static foreach_reverse (thing; things)
|
||||
{
|
||||
doStuff();
|
||||
pragma(msg, thing);
|
||||
}
|
||||
static foreach (thing; things)
|
||||
doStuff();
|
||||
pragma(msg, thing);
|
||||
static foreach_reverse (thing; things)
|
||||
doStuff();
|
||||
pragma(msg, thing);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
static foreach (thing; things){doStuff();}
|
||||
static foreach_reverse (thing; things){doStuff();}
|
||||
static foreach (thing; things) doStuff();
|
||||
static foreach_reverse (thing; things) doStuff();
|
||||
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);
|
|
@ -1,10 +1,10 @@
|
|||
static foreach (thing; things) {
|
||||
doStuff();
|
||||
pragma(msg, thing);
|
||||
}
|
||||
static foreach_reverse (thing; things) {
|
||||
doStuff();
|
||||
pragma(msg, thing);
|
||||
}
|
||||
static foreach (thing; things)
|
||||
doStuff();
|
||||
pragma(msg, thing);
|
||||
static foreach_reverse (thing; things)
|
||||
doStuff();
|
||||
pragma(msg, thing);
|
||||
|
|
Loading…
Reference in New Issue