summary refs log tree commit diff stats
path: root/tests/generics/t5643.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-07-05 15:51:04 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-07-05 15:51:04 +0200
commit0926754e68861947c67986bc9c7e0a011a58267b (patch)
treebc11469a33f1aabd202e7105177553688439712a /tests/generics/t5643.nim
parent9b31f6785947974e89d46bbc0dee11f1c78754dc (diff)
downloadNim-0926754e68861947c67986bc9c7e0a011a58267b.tar.gz
make tests green again
Diffstat (limited to 'tests/generics/t5643.nim')
-rw-r--r--tests/generics/t5643.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/generics/t5643.nim b/tests/generics/t5643.nim
index 962d5cef5..f303bbc70 100644
--- a/tests/generics/t5643.nim
+++ b/tests/generics/t5643.nim
@@ -1,5 +1,5 @@
 type
-  Matrix*[M, N: static[int], T: SomeReal] = object
+  Matrix*[M, N: static[int], T: SomeFloat] = object
     data: ref array[N * M, T]
 
   Matrix64*[M, N: static[int]] = Matrix[M, N, float64]