mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
15 lines
291 B
Nim
15 lines
291 B
Nim
discard """
|
|
exitcode: 0
|
|
"""
|
|
|
|
# Derived from issue #9201
|
|
import asyncdispatch, macros
|
|
|
|
macro newAsyncProc(name: untyped): untyped =
|
|
expectKind name, nnkStrLit
|
|
let pName = genSym(nskProc, name.strVal)
|
|
result = getAst async quote do:
|
|
proc `pName`() = discard
|
|
|
|
newAsyncProc("hello")
|