mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
Fix test
This commit is contained in:
parent
abc3e6d47e
commit
8cd9265384
3 changed files with 12 additions and 12 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue