branch: elpa/d-mode
commit 53eac1003afc009e66ad78920c4e6005359464da
Author: Vladimir Panteleev <[email protected]>
Commit: Vladimir Panteleev <[email protected]>
tests: Test paren-less calls as well in test for issue #26
---
tests/I0026.d | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/I0026.d b/tests/I0026.d
index 1b18b9c..17ce42e4 100644
--- a/tests/I0026.d
+++ b/tests/I0026.d
@@ -11,4 +11,8 @@ void main()
.buildNormalizedPath()
.dirEntries(SpanMode.shallow))
{}
+ foreach (file; dirPath.expandTilde
+ .buildNormalizedPath
+ .dirEntries(SpanMode.shallow))
+ {}
}