diff options
author | cooldome <ariabushenko@gmail.com> | 2020-09-10 11:40:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-10 12:40:39 +0200 |
commit | 61c85e034de571cb25020b6dddf662c82896907a (patch) | |
tree | d2fe2037bf016452c3a468e8bc21c70d22340c98 /tests | |
parent | 3f00a738dbc8319b4dd2b86bf5529c096f2dd243 (diff) | |
download | Nim-61c85e034de571cb25020b6dddf662c82896907a.tar.gz |
Fix #15286 (#15292)
* fix #15286 * fix spacing
Diffstat (limited to 'tests')
-rw-r--r-- | tests/arc/t14383.nim | 8 |
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 |