mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-06 21:17:48 +00:00
fixes #24559 The strformat macros have the problem that they don't capture symbols, so don't use them in the generic `fromJson` proc here. Also `fromJson` refers to `jsonTo` before it is declared which doesn't capture it, so it's now forward declared.
11 lines
174 B
Nim
11 lines
174 B
Nim
discard """
|
|
action: compile
|
|
"""
|
|
|
|
# issue #24559
|
|
|
|
import mjsonutilssandwich
|
|
# import std/[json, jsonutils] # Add this line and everything works 🤡
|
|
|
|
unserialize[Foo]("{}")
|