Files
Nim/tests/procvar/tgenericprocvar.nim
2014-01-13 02:10:03 +01:00

6 lines
92 B
Nim

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