diff options
author | Arne Döring <arne.doering@gmx.net> | 2018-10-20 21:57:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-20 21:57:17 +0200 |
commit | ce05a850a55a651bcdd01e7af9af9702c8af5caf (patch) | |
tree | 9047468760210ae233f067a5778f6452e9c74fc4 /tests | |
parent | 863d3ef4ed7d18877a42f0060ebe63c34a27cf32 (diff) | |
parent | 557fa85e0270c0433b98bf965b5eeac4ef0e06f7 (diff) | |
download | Nim-ce05a850a55a651bcdd01e7af9af9702c8af5caf.tar.gz |
Merge pull request #9457 from Vindaar/fixes-9456
Fixes #9456
Diffstat (limited to 'tests')
-rw-r--r-- | tests/stdlib/tissues.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/stdlib/tissues.nim b/tests/stdlib/tissues.nim index 6d886a553..b5a1c8206 100644 --- a/tests/stdlib/tissues.nim +++ b/tests/stdlib/tissues.nim @@ -103,3 +103,7 @@ block t5349: for line in lines("test.txt"): echo line + +block t9456: + var f: File + f.close() |