mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
6 lines
92 B
Nim
6 lines
92 B
Nim
proc foo[T](thing: T) =
|
|
discard thing
|
|
|
|
var a: proc (thing: int) {.nimcall.} = foo[int]
|
|
|