mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-22 00:41:28 +00:00
fixes #1802
This commit is contained in:
19
tests/parser/tproctype_pragmas.nim
Normal file
19
tests/parser/tproctype_pragmas.nim
Normal file
@@ -0,0 +1,19 @@
|
||||
discard """
|
||||
output: '''39
|
||||
40'''
|
||||
"""
|
||||
|
||||
# bug 1802
|
||||
# Ensure proc pragmas are attached properly:
|
||||
|
||||
proc makeStdcall(s: string): (proc(i: int) {.stdcall.}) =
|
||||
(proc (x: int) {.stdcall.} = echo x)
|
||||
|
||||
proc makeNimcall(s: string): (proc(i: int)) {.stdcall.} =
|
||||
(proc (x: int) {.nimcall.} = echo x)
|
||||
|
||||
let stdc: proc (y: int) {.stdcall.} = makeStdcall("bu")
|
||||
let nimc: proc (y: int) {.closure.} = makeNimcall("ba")
|
||||
|
||||
stdc(39)
|
||||
nimc(40)
|
||||
Reference in New Issue
Block a user