summary refs log tree commit diff stats
path: root/tests/ccgbugs/t5345.nim
blob: f9ee833c4c622de959e86da5668f26c9661dae75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  output: true
"""

proc cmpx(d: int): bool {.inline.} = d > 0

proc abc[C](cx: C, d: int) =
  echo cx(d)
  
abc(cmpx, 10)