summary refs log tree commit diff stats
path: root/tests/procvar/tgenericprocvar.nim
blob: e642e3577f87af63305d31d7e7bb5e677212c2e7 (plain) (blame)
1
2
3
4
5
proc foo[T](thing: T) =
    discard thing

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