mirror of
https://github.com/dlang/phobos.git
synced 2025-05-01 23:50:31 +03:00
Some whitespace cleanup.
This commit is contained in:
parent
24a696a2b2
commit
7d5d9fb1c0
1 changed files with 3 additions and 3 deletions
|
@ -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)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue