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

{.compile: "test.c".}

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

echo foo(40, 4)