Files
Nim/tests/actiontable/tactiontable2.nim
2014-08-29 01:12:18 +02:00

29 lines
454 B
Nim

discard """
line: 21
errormsg: "invalid type: 'Table[string, proc (string){.gcsafe.}]'"
"""
import tables
proc action1(arg: string) =
echo "action 1 ", arg
proc action2(arg: string) =
echo "action 2 ", arg
proc action3(arg: string) =
echo "action 3 ", arg
proc action4(arg: string) =
echo "action 4 ", arg
const
actionTable = {
"A": action1,
"B": action2,
"C": action3,
"D": action4}.toTable
actionTable["C"]("arg")