xseq9578.nim 122 B

12345678
  1. import t9578
  2. proc testSeq*(x: var seq[mytype]) =
  3. f(x[0].addr)
  4. proc testSeq2*(x: var ptr seq[mytype]) =
  5. f(x[0].addr)