summary refs log tree commit diff stats
path: root/tests/range/compilehelpers.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/range/compilehelpers.nim')
-rw-r--r--tests/range/compilehelpers.nim5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/range/compilehelpers.nim b/tests/range/compilehelpers.nim
index cb26ca5b5..08f97a5bf 100644
--- a/tests/range/compilehelpers.nim
+++ b/tests/range/compilehelpers.nim
@@ -1,6 +1,5 @@
-template accept(e: expr) =
+template accept(e) =
   static: assert(compiles(e))
 
-template reject(e: expr) =
+template reject(e) =
   static: assert(not compiles(e))
-