summary refs log tree commit diff stats
path: root/tests/compile/mtempl5.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile/mtempl5.nim')
-rw-r--r--tests/compile/mtempl5.nim10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/compile/mtempl5.nim b/tests/compile/mtempl5.nim
deleted file mode 100644
index 51e8461b8..000000000
--- a/tests/compile/mtempl5.nim
+++ /dev/null
@@ -1,10 +0,0 @@
-
-var 
-  gx = 88
-  gy = 44
-  
-template templ*(): int =
-  bind gx, gy
-  gx + gy
-  
-