mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 04:27:44 +00:00
12 lines
134 B
Nim
12 lines
134 B
Nim
|
|
type
|
|
TMyObj = object
|
|
x: int
|
|
|
|
proc gen*[T](): T =
|
|
var d: TMyObj
|
|
# access private field here
|
|
d.x = 3
|
|
result = d.x
|
|
|