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

var a: proc (thing: int) = foo[int]