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