mirror of
https://github.com/logos-messaging/nim-ffi.git
synced 2026-08-05 06:23:19 +00:00
14 lines
294 B
Nim
14 lines
294 B
Nim
## Must fail: `{.ffiExport.}` on a static shape (see tests/unit/test_ffi_router_reject.nim).
|
|
|
|
import ffi, chronos
|
|
|
|
type RouterRejLib = object
|
|
base: int
|
|
|
|
declareLibrary("routerrej", RouterRejLib)
|
|
|
|
proc routerrejBad*(): Future[Result[int, string]] {.ffiExport.} =
|
|
return ok(1)
|
|
|
|
genBindings()
|