mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 22:33:49 +00:00
8 lines
122 B
Nim
8 lines
122 B
Nim
import t9578
|
|
|
|
proc testSeq*(x: var seq[mytype]) =
|
|
f(x[0].addr)
|
|
|
|
proc testSeq2*(x: var ptr seq[mytype]) =
|
|
f(x[0].addr)
|