mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
(cherry picked from commit 1bcc352137)
This commit is contained in:
20
tests/macros/t14847.nim
Normal file
20
tests/macros/t14847.nim
Normal file
@@ -0,0 +1,20 @@
|
||||
discard """
|
||||
output: "98"
|
||||
"""
|
||||
import macros
|
||||
|
||||
#bug #14847
|
||||
proc hello*(b: string) =
|
||||
echo b
|
||||
|
||||
macro dispatch(pro: typed, params: untyped): untyped =
|
||||
var impl = pro.getImpl
|
||||
let id = ident(pro.strVal & "_coverage")
|
||||
impl[0] = id
|
||||
let call = newCall(id, params)
|
||||
|
||||
result = newStmtList()
|
||||
result.add(impl)
|
||||
result.add(call)
|
||||
|
||||
dispatch(hello, "98")
|
||||
Reference in New Issue
Block a user