mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
10 lines
127 B
Nim
10 lines
127 B
Nim
discard """
|
|
errormsg: "illegal capture 'v'"
|
|
line: 7
|
|
"""
|
|
|
|
proc outer(v: int) =
|
|
proc b {.nimcall.} = echo v
|
|
b()
|
|
outer(5)
|