diff options
author | Araq <rumpf_a@web.de> | 2011-07-31 14:57:38 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-07-31 14:57:38 +0200 |
commit | 4f7fa0591112e70f7eacef051a215e3420f78da8 (patch) | |
tree | bc1ba0fda506403d488154fa1c599d2ac54f3c6d /tests/accept/compile/tdictdestruct.nim | |
parent | 00da785f5dce911321f63230b7f87a7d143d2133 (diff) | |
download | Nim-4f7fa0591112e70f7eacef051a215e3420f78da8.tar.gz |
void type improvements; documentation improvements
Diffstat (limited to 'tests/accept/compile/tdictdestruct.nim')
-rwxr-xr-x | tests/accept/compile/tdictdestruct.nim | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/accept/compile/tdictdestruct.nim b/tests/accept/compile/tdictdestruct.nim index 9c1f27ed8..09e173b7c 100755 --- a/tests/accept/compile/tdictdestruct.nim +++ b/tests/accept/compile/tdictdestruct.nim @@ -1,6 +1,3 @@ -discard """ - disabled: true -""" type TDict[TK, TV] = object @@ -14,7 +11,7 @@ proc fakeNew[T](x: var ref T, destroy: proc (a: ref T)) = proc destroyDict[TK, TV](a: PDict[TK, TV]) = return proc newDict[TK, TV](a: TK, b: TV): PDict[TK, TV] = - Fakenew(result, destroyDict) + Fakenew(result, destroyDict[TK, TV]) # Problem: destroyDict is not instantiated when newDict is instantiated! |