summary refs log tree commit diff stats
path: root/tests/run/tmemoization.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/tmemoization.nim')
-rw-r--r--tests/run/tmemoization.nim17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/run/tmemoization.nim b/tests/run/tmemoization.nim
deleted file mode 100644
index 10db1fcf1..000000000
--- a/tests/run/tmemoization.nim
+++ /dev/null
@@ -1,17 +0,0 @@
-discard """
-  msg:    "test 1\ntest 2"
-  output: "TEST 1\nTEST 2\nTEST 2"
-"""
-
-import strutils
-
-proc foo(s: expr{string}): string =
-  static: echo s
-
-  const R = s.toUpper
-  return R
-  
-echo foo("test 1")
-echo foo("test 2")
-echo foo("test " & $2)
-