mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-02 21:49:02 +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)
|