mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
12 lines
165 B
Nim
12 lines
165 B
Nim
discard """
|
|
errormsg: "await expects Future[T], got int"
|
|
cmd: "nim c $file"
|
|
file: "asyncmacro.nim"
|
|
"""
|
|
import async
|
|
|
|
proc a {.async.} =
|
|
await 0
|
|
|
|
waitFor a()
|