summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorcooldome <ariabushenko@gmail.com>2020-09-10 11:40:39 +0100
committerGitHub <noreply@github.com>2020-09-10 12:40:39 +0200
commit61c85e034de571cb25020b6dddf662c82896907a (patch)
treed2fe2037bf016452c3a468e8bc21c70d22340c98 /tests
parent3f00a738dbc8319b4dd2b86bf5529c096f2dd243 (diff)
downloadNim-61c85e034de571cb25020b6dddf662c82896907a.tar.gz
Fix #15286 (#15292)
* fix #15286

* fix spacing
Diffstat (limited to 'tests')
-rw-r--r--tests/arc/t14383.nim8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/arc/t14383.nim b/tests/arc/t14383.nim
index 412e11326..78afc58e2 100644
--- a/tests/arc/t14383.nim
+++ b/tests/arc/t14383.nim
@@ -43,3 +43,11 @@ proc varArg(lst: var seq[string]) =
 var x = @["a", "b"]
 varArg(x)
 echo x
+
+
+#------------------------------------------------------------------------------
+# Issue #15286
+#------------------------------------------------------------------------------
+
+import std/os
+discard getFileInfo(".")
\ No newline at end of file