nim-chronos/tests/test4.nim

12 lines
195 B
Nim
Raw Normal View History

2018-05-16 08:22:34 +00:00
import ../asyncdispatch2
proc task() {.async.} =
if true:
raise newException(ValueError, "Test Error")
proc waitTask() {.async.} =
await task()
when isMainModule:
waitFor waitTask()