summary refs log tree commit diff stats
path: root/tests/closure/tinvalidclosure.nim
blob: b2d8bd28d7d63627ad010f4051e206da2e40942b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  errormsg: "type mismatch: got <proc (x: int){.gcsafe, locks: 0.}>"
  line: 12
"""

proc ugh[T](x: T) {.nimcall.} =
  echo "ugha"


proc takeCdecl(p: proc (x: int) {.cdecl.}) = discard

takeCDecl(ugh[int])