Use fixed dscanner version

This commit is contained in:
2018-09-03 09:55:19 +02:00
parent 09f434f631
commit 5ba6d35a1b
4 changed files with 13 additions and 16 deletions

View File

@ -909,17 +909,6 @@ void put(R, E)(ref R range, auto ref E e)
assert(oc.e == 2);
}
///
@nogc nothrow pure @safe unittest
{
int[2] actual;
int[2] expected = [2, 3];
auto slice = actual[];
put(slice, expected[]);
assert(actual == expected);
}
/**
* Determines whether $(D_PARAM R) is an output range for the elemens of type
* $(D_PARAM E).