summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2018-09-03 09:55:19 +0200
committerEugen Wissner <belka@caraus.de>2018-09-03 09:55:19 +0200
commit5ba6d35a1b146c206602704369a1c6ba18a0152a (patch)
tree52eae390cb8a4d465e32d288b3c8ebdc090f612c /source
parent09f434f631fa33c3d7d48e7d8cbdc5407ad6116b (diff)
downloadtanya-5ba6d35a1b146c206602704369a1c6ba18a0152a.tar.gz
Use fixed dscanner version
Diffstat (limited to 'source')
-rw-r--r--source/tanya/range/primitive.d11
1 files changed, 0 insertions, 11 deletions
diff --git a/source/tanya/range/primitive.d b/source/tanya/range/primitive.d
index 72824a5..1b3b96b 100644
--- a/source/tanya/range/primitive.d
+++ b/source/tanya/range/primitive.d
@@ -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).