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

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


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

takeCDecl(ugh[int])