summary refs log tree commit diff stats
path: root/tests/ccgbugs/xarray9578.nim
blob: 849f1682189360988d4ed830bf2e673ba1caf79a (plain) (blame)
1
2
3
4
5
6
7
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)