summary refs log tree commit diff stats
path: root/tests/actiontable/tactiontable2.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/actiontable/tactiontable2.nim')
-rw-r--r--tests/actiontable/tactiontable2.nim28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/actiontable/tactiontable2.nim b/tests/actiontable/tactiontable2.nim
new file mode 100644
index 000000000..00b427603
--- /dev/null
+++ b/tests/actiontable/tactiontable2.nim
@@ -0,0 +1,28 @@
+discard """
+  line: 21
+  errormsg: "invalid type: 'TTable'"
+"""
+
+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")
+