From a30171a0cd1ee936e4df23be98429a742cfc531b Mon Sep 17 00:00:00 2001 From: Martin Nowak Date: Thu, 5 Dec 2013 15:16:32 +0100 Subject: [PATCH] add test --- std/path.d | 3 +++ 1 file changed, 3 insertions(+) diff --git a/std/path.d b/std/path.d index ab8c21d3cf5..2f575bafea1 100644 --- a/std/path.d +++ b/std/path.d @@ -1730,6 +1730,9 @@ unittest { assert (equal(pathSplitter("/foo/bar".dup), ["/", "foo", "bar"])); }); + + // Bugzilla 11691 + static assert(is(typeof(pathSplitter!char().front) == const(char)[])); }