1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
discard """ exitcode: 0 output: "hello world" disabled: windows """ import asyncdispatch import asyncfile var asyncStdout = 1.AsyncFD.newAsyncFile() proc doStuff: Future[void] {.async.} = await asyncStdout.write "hello world\n" let fut = doStuff() doAssert fut.finished, "Poll is needed unnecessarily. See #6846."