summary refs log tree commit diff stats
path: root/tests/errmsgs/t10594.nim
blob: d27dd64332c8efa28188adb4964b0d2c4dacdc76 (plain) (blame)
1
2
3
4
5
6
7
discard """
  errormsg: "expression has no address"
  line: 7
"""

template foo(v: varargs[int]) = addr v 
foo(1, 2)