mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
17 lines
160 B
Nim
17 lines
160 B
Nim
discard """
|
|
output: "abc"
|
|
"""
|
|
|
|
type
|
|
TA = object {.pure, final.}
|
|
x: string
|
|
|
|
var
|
|
a: TA
|
|
a.x = "abc"
|
|
|
|
doAssert TA.sizeof == string.sizeof
|
|
|
|
echo a.x
|
|
|