diff options
author | cooldome <cdome@bk.ru> | 2020-03-31 20:15:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-31 21:15:06 +0200 |
commit | c70b3952ff6fc181875c3ca1a28c6bba6617c1a8 (patch) | |
tree | 0a521ee88dfe1b637a7f4c456ea7d5f510f8d822 /tests/arc/tarcmisc.nim | |
parent | 9134bb9cfb81297d00ccd6d41fe975e853fca2e5 (diff) | |
download | Nim-c70b3952ff6fc181875c3ca1a28c6bba6617c1a8.tar.gz |
fixes #13810 (#13821)
Co-authored-by: cooldome <ariabushenko@bk.ru>
Diffstat (limited to 'tests/arc/tarcmisc.nim')
-rw-r--r-- | tests/arc/tarcmisc.nim | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/tests/arc/tarcmisc.nim b/tests/arc/tarcmisc.nim index 9662ecf7f..687254794 100644 --- a/tests/arc/tarcmisc.nim +++ b/tests/arc/tarcmisc.nim @@ -2,7 +2,9 @@ discard """ output: ''' destroyed: false destroyed: false -destroying variable''' +closed +destroying variable +''' cmd: "nim c --gc:arc $file" """ @@ -27,3 +29,22 @@ proc test(count: int) = echo "destroyed: ", v.isNil test(3) + + +#------------------------------------------------------------------------------ +# issue #13810 + +import streams + +type + A = ref AObj + AObj = object of RootObj + io: Stream + B = ref object of A + x: int + +proc `=destroy`(x: var AObj) = + close(x.io) + echo "closed" + +var x = B(io: newStringStream("thestream")) |