summary refs log tree commit diff stats
path: root/tests/c/tcompile.nim
blob: cf99fd7edb0142ebda2a962d9b68927f607d6ccd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  output: '''44'''
  joinable: "false"
"""

{.compile: "tcompile.c".}

proc foo(a, b: cint): cint {.importc: "foo", cdecl.}

echo foo(40, 4)