Files
Nim/tests/closure/tinvalidclosure.nim
2018-02-10 20:55:22 +01:00

13 lines
219 B
Nim

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])