summary refs log blame commit diff stats
path: root/tests/ccgbugs/xtuple9578.nim
blob: b6320fc24379879df6030dd6117020019e9b61f4 (plain) (tree)
1
2
3
4
5
6
7






                                                                
import t9578

proc testTuple*(x: var tuple[a:mytype,b:mytype,c:mytype]) =
  f(x[0].addr)

proc testTuple2*(x: var ptr tuple[a:mytype,b:mytype,c:mytype]) =
  f(x[0].addr)