summary refs log tree commit diff stats
path: root/tests/concepts/matrix.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/concepts/matrix.nim')
-rw-r--r--tests/concepts/matrix.nim5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/concepts/matrix.nim b/tests/concepts/matrix.nim
index a30cbe4f3..47a709f80 100644
--- a/tests/concepts/matrix.nim
+++ b/tests/concepts/matrix.nim
@@ -9,7 +9,6 @@ proc `[]=`*(M: var Matrix; m, n: int; v: M.T) =
   M.data[m * M.N + n] = v
 
 # Adapt the Matrix type to the concept's requirements
-template Rows*(M: type Matrix): expr = M.M
-template Cols*(M: type Matrix): expr = M.N
+template Rows*(M: type Matrix): untyped = M.M
+template Cols*(M: type Matrix): untyped = M.N
 template ValueType*(M: type Matrix): typedesc = M.T
-