nim-chronos/tests/test4.nim
2018-05-16 11:22:34 +03:00

12 lines
195 B
Nim

import ../asyncdispatch2
proc task() {.async.} =
if true:
raise newException(ValueError, "Test Error")
proc waitTask() {.async.} =
await task()
when isMainModule:
waitFor waitTask()