mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
10 lines
196 B
Nim
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()
|