diff options
author | Araq <rumpf_a@web.de> | 2019-04-02 08:23:13 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-04-02 08:23:13 +0200 |
commit | f5a7a3bee9c500acc547b0f3414dbdcbdbe00941 (patch) | |
tree | e0ed65036930dacfea536314e52f5e9b6e4e3fb4 /tests | |
parent | b77a2037f8de1bd2cbb7e67c748fab961f6076df (diff) | |
download | Nim-f5a7a3bee9c500acc547b0f3414dbdcbdbe00941.tar.gz |
make megatest work again
Diffstat (limited to 'tests')
-rw-r--r-- | tests/concepts/tconcepts_issues.nim | 1 | ||||
-rw-r--r-- | tests/concepts/tvectorspace.nim | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/concepts/tconcepts_issues.nim b/tests/concepts/tconcepts_issues.nim index df4037ffb..53076e142 100644 --- a/tests/concepts/tconcepts_issues.nim +++ b/tests/concepts/tconcepts_issues.nim @@ -28,6 +28,7 @@ true -1 Meow ''' +joinable: false """ import macros, typetraits, os, posix diff --git a/tests/concepts/tvectorspace.nim b/tests/concepts/tvectorspace.nim index 74423e0d2..7a18c1762 100644 --- a/tests/concepts/tvectorspace.nim +++ b/tests/concepts/tvectorspace.nim @@ -1,3 +1,7 @@ +discard """ + joinable: false +""" + type VectorSpace[K] = concept x, y x + y is type(x) zero(type(x)) is type(x) |