mirror of
https://github.com/logos-messaging/nim-ffi.git
synced 2026-08-05 06:23:19 +00:00
14 lines
298 B
Nim
14 lines
298 B
Nim
## Must fail: `{.ffiEvent.}` 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*(n: int): Future[Result[int, string]] {.ffiEvent.} =
|
|
return ok(n)
|
|
|
|
genBindings()
|