mirror of
https://github.com/status-im/nim-chronos.git
synced 2025-01-20 16:29:12 +00:00
12 lines
195 B
Nim
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()
|