mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
15 lines
170 B
Nim
15 lines
170 B
Nim
discard """
|
|
line: 10
|
|
errormsg: "illegal capture 'A'"
|
|
"""
|
|
|
|
proc outer() =
|
|
var A: int
|
|
|
|
proc ugh[T](x: T) {.cdecl.} =
|
|
echo "ugha", A, x
|
|
|
|
ugh[int](12)
|
|
|
|
outer()
|