diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-05-10 17:06:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-10 11:06:14 +0200 |
commit | deaf6843752112cfaadc688302c94779d633c686 (patch) | |
tree | 6a15079afca37a564ea73b4e1ee1bf51055c319b /tests/stdlib/tjsonutils.nim | |
parent | 4b76037e5fe14f75ac5381a0d08ad509f450cf56 (diff) | |
download | Nim-deaf6843752112cfaadc688302c94779d633c686.tar.gz |
fix #9423 followup #17594: distinct generics now work in VM (#21816)
* fix #9423 distinct generics now work in vm * fixes cpp tests --------- Co-authored-by: Timothee Cour <timothee.cour2@gmail.com>
Diffstat (limited to 'tests/stdlib/tjsonutils.nim')
-rw-r--r-- | tests/stdlib/tjsonutils.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/stdlib/tjsonutils.nim b/tests/stdlib/tjsonutils.nim index d6f902301..9acf4c9e5 100644 --- a/tests/stdlib/tjsonutils.nim +++ b/tests/stdlib/tjsonutils.nim @@ -61,8 +61,7 @@ template fn() = testRoundtrip(pointer(nil)): """0""" testRoundtrip(cast[pointer](nil)): """0""" - # causes workaround in `fromJson` potentially related to - # https://github.com/nim-lang/Nim/issues/12282 + # refs bug #9423 testRoundtrip(Foo(1.5)): """1.5""" block: # OrderedTable |