DEBSOURCES
Skip Quicknav
sources / nim / 2.2.4-2 / tests / types / tfinalobj.nim
123456789101112131415
discard """ output: '''abc''' """ type TA {.pure, final.} = object x: string var a: TA a.x = "abc" doAssert TA.sizeof == string.sizeof echo a.x