mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 10:52:14 +00:00
8 lines
170 B
Nim
8 lines
170 B
Nim
import t9578
|
|
|
|
proc testTuple*(x: var tuple[a:mytype,b:mytype,c:mytype]) =
|
|
f(x[0].addr)
|
|
|
|
proc testTuple2*(x: var ptr tuple[a:mytype,b:mytype,c:mytype]) =
|
|
f(x[0].addr)
|