tasync_nofuture.nim 165 B

123456789101112
  1. discard """
  2. errormsg: "await expects Future[T], got int"
  3. cmd: "nim c $file"
  4. file: "asyncmacro.nim"
  5. """
  6. import async
  7. proc a {.async.} =
  8. await 0
  9. waitFor a()