mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 22:33:49 +00:00
11 lines
135 B
Nim
11 lines
135 B
Nim
discard """
|
|
output: true
|
|
"""
|
|
|
|
proc cmpx(d: int): bool {.inline.} = d > 0
|
|
|
|
proc abc[C](cx: C, d: int) =
|
|
echo cx(d)
|
|
|
|
abc(cmpx, 10)
|