Files
Nim/tests/async/tdiscardableproc.nim
2020-11-29 17:32:34 -08:00

10 lines
196 B
Nim

discard """
errormsg: "Cannot make async proc discardable. Futures have to be checked with `asyncCheck` instead of discarded"
"""
import async
proc foo {.async, discardable.} = discard
foo()