mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
8 lines
134 B
Nim
8 lines
134 B
Nim
import t9578
|
|
|
|
proc testArray*(x: var array[3,mytype]) =
|
|
f(x[0].addr)
|
|
|
|
proc testArray2*(x: var ptr array[3,mytype]) =
|
|
f(x[0].addr)
|