summary refs log tree commit diff stats
path: root/tests/trmacros/tpartial.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/trmacros/tpartial.nim')
-rw-r--r--tests/trmacros/tpartial.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/trmacros/tpartial.nim b/tests/trmacros/tpartial.nim
deleted file mode 100644
index c636684d7..000000000
--- a/tests/trmacros/tpartial.nim
+++ /dev/null
@@ -1,11 +0,0 @@
-discard """
-  output: '''-2'''
-"""
-
-proc p(x, y: int; cond: bool): int =
-  result = if cond: x + y else: x - y
-
-template optP{p(x, y, true)}(x, y): untyped = x - y
-template optP{p(x, y, false)}(x, y): untyped = x + y
-
-echo p(2, 4, true)