mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
10 lines
194 B
Nim
10 lines
194 B
Nim
discard """
|
|
errmsg: "Cannot make async proc discardable. Futures have to be checked with `asyncCheck` instead of discarded"
|
|
"""
|
|
|
|
import async
|
|
|
|
proc foo {.async, discardable.} = discard
|
|
|
|
foo()
|