Files
Nim/tests/async/t15148.nim
flywind eee3b189ff fix #15148 (#15149)
* fix #15148

Co-authored-by: alaviss <leorize+oss@disroot.org>
2020-08-08 07:24:54 +02:00

13 lines
218 B
Nim

import asyncdispatch, asyncfile, os
const Filename = "t15148.txt"
proc saveEmpty() {.async.} =
let
text = ""
file = openAsync(Filename, fmWrite)
await file.write(text)
file.close()
waitFor saveEmpty()