summary refs log tree commit diff stats
path: root/tests/async/tasync_nofuture.nim
blob: 16155601a9f795d5c7912c71a60d045ad187cf91 (plain) (blame)
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()