Files
Nim/tests/async/t6846.nim
2018-08-23 20:35:22 +02:00

16 lines
337 B
Nim

discard """
exitcode: 0
output: "hello world"
disabled: windows
"""
import asyncdispatch
import asyncfile
import times
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."