Some whitespace cleanup.

This commit is contained in:
jmdavis 2012-10-09 22:09:58 -07:00
parent 24a696a2b2
commit 7d5d9fb1c0

View file

@ -920,7 +920,7 @@ unittest
InputRange range; InputRange range;
fill(range, filler); fill(range, filler);
foreach (value; range.arr) foreach (value; range.arr)
assert(value == filler); assert(value == filler);
} }
unittest unittest
{ {
@ -947,12 +947,12 @@ unittest
{ {
int[] a = [1, 2, 3]; int[] a = [1, 2, 3];
immutable(int) b = 0; immutable(int) b = 0;
static assert(__traits(compiles, a.fill(b))); static assert(__traits(compiles, a.fill(b)));
} }
{ {
double[] a = [1, 2, 3]; double[] a = [1, 2, 3];
immutable(int) b = 0; immutable(int) b = 0;
static assert(__traits(compiles, a.fill(b))); static assert(__traits(compiles, a.fill(b)));
} }
} }