summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-04-02 08:23:13 +0200
committerAraq <rumpf_a@web.de>2019-04-02 08:23:13 +0200
commitf5a7a3bee9c500acc547b0f3414dbdcbdbe00941 (patch)
treee0ed65036930dacfea536314e52f5e9b6e4e3fb4 /tests
parentb77a2037f8de1bd2cbb7e67c748fab961f6076df (diff)
downloadNim-f5a7a3bee9c500acc547b0f3414dbdcbdbe00941.tar.gz
make megatest work again
Diffstat (limited to 'tests')
-rw-r--r--tests/concepts/tconcepts_issues.nim1
-rw-r--r--tests/concepts/tvectorspace.nim4
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)
href='#n174'>174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283