summary refs log tree commit diff stats
diff options
context:
space:
mode:
authormetagn <metagngn@gmail.com>2023-06-16 21:20:06 +0300
committerGitHub <noreply@github.com>2023-06-16 20:20:06 +0200
commit0de9e6bbf33bd013e39025f0ee81fc86956e70cf (patch)
tree53b5ad3e12a198dc87386f1740feb7725ba89351
parent8c3b0e9b488c140721a17f5c085185049fcb5136 (diff)
downloadNim-0de9e6bbf33bd013e39025f0ee81fc86956e70cf.tar.gz
add test to close #7209 (#22110)
* add test to close #7209

was fixed by #22029

* fix echo => doAssert
-rw-r--r--tests/statictypes/tstaticgenericparam.nim13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/statictypes/tstaticgenericparam.nim b/tests/statictypes/tstaticgenericparam.nim
index 3c77882d1..6acd05b70 100644
--- a/tests/statictypes/tstaticgenericparam.nim
+++ b/tests/statictypes/tstaticgenericparam.nim
@@ -9,3 +9,16 @@ block: # issue #19365
   doAssert ss == @["123: int"]
   f("abc")
   doAssert ss == @["123: int", "abc: string"]
+
+block: # issue #7209
+  type Modulo[A; M: static[A]] = distinct A
+
+  proc `$`[A; M: static[A]](x: Modulo[A, M]): string =
+    $(A(x)) & " mod " & $(M)
+
+  proc modulo[A](a: A, M: static[A]): Modulo[A, M] = Modulo[A, M](a %% M)
+
+  proc `+`[A; M: static[A]](x, y: Modulo[A, M]): Modulo[A, M] =
+    (A(x) + A(y)).modulo(M)
+
+  doAssert $(3.modulo(7) + 5.modulo(7)) == "1 mod 7"