1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
discard """
output: '''ok'''
"""
# bug #9864
import macros, tables
proc bar(shOpt: Table[string, int]) = discard
macro dispatchGen(): untyped =
var shOpt = initTable[string, int]()
shOpt["foo"] = 10
result = quote do:
bar(`shOpt`)
dispatchGen()
type
Foo = object
data: seq[int]
proc barB(a: Foo) = discard
proc shOptB(): auto =
var shOpt: Foo
shOpt.data.setLen 1 # fails
shOpt
macro dispatchGenB(): untyped =
var shOpt = shOptB() # fails
result = quote do:
barB(`shOpt`)
dispatchGenB()
echo "ok"
|