Files
Nim/tests/compile/tgenericprocvar.nim
2012-07-17 08:44:04 +02:00

6 lines
92 B
Nim
Executable File

proc foo[T](thing: T) =
discard thing
var a: proc (thing: int) {.nimcall.} = foo[int]