summary refs log blame commit diff stats
path: root/tests/closure/tinvalidclosure4.nim
blob: 7985a2488874bec5aa7ce7c8de018524dcb2d2db (plain) (tree)
1
2
3
4
5
6
7
8
9








                                 
discard """
  errormsg: "illegal capture 'v'"
  line: 7
"""

proc outer(v: int) =
  proc b {.nimcall.} = echo v
  b()
outer(5)