Closed kaiserd closed 2 years ago
Using a type qualified by a module name (e.g. specialint.SINT) yields the following error:
specialint.SINT
Error: unhandled exception: [IdentDefs] Unsupported child node: DotExpr Ident "specialint" Ident "SInt" [AssertionError]
Here is a small example generating this error:
main.nim
import confutils, ./specialint type TestConf* = object La* {. desc: "La" name: "la" }: specialint.SInt when isMainModule: let conf = TestConf.load() echo repr conf
specialint.nim
type SInt* = distinct int
I tested this within the nimbus build system environment of nwaku.
Using a type qualified by a module name (e.g.
specialint.SINT
) yields the following error:Here is a small example generating this error:
main.nim
specialint.nim
I tested this within the nimbus build system environment of nwaku.