diff --git a/tests/allman/issue0303.d.ref b/tests/allman/issue0303.d.ref index 9b974c5..807cc28 100644 --- a/tests/allman/issue0303.d.ref +++ b/tests/allman/issue0303.d.ref @@ -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); diff --git a/tests/issue0303.d b/tests/issue0303.d index 3a4d6b3..3fcab0e 100644 --- a/tests/issue0303.d +++ b/tests/issue0303.d @@ -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(); \ No newline at end of file +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); \ No newline at end of file diff --git a/tests/otbs/issue0303.d.ref b/tests/otbs/issue0303.d.ref index 878435f..4f11f69 100644 --- a/tests/otbs/issue0303.d.ref +++ b/tests/otbs/issue0303.d.ref @@ -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);