summary refs log tree commit diff stats
path: root/tests/concepts
Commit message (Expand)AuthorAgeFilesLines
* make megatest consistent with unjoined tests wrt newlines, honor newlines in ...Timothee Cour2020-11-281-1/+1
* close #8558(add testcase for #8558) (#15872)flywind2020-11-071-0/+26
* add testcase for #8012 (#15785)flywind2020-10-301-0/+15
* fix assignment to converted concept type (#15051)jcosborn2020-07-241-17/+37
* Clean out Deprecated proc (#14797)Juan Carlos2020-06-291-15/+6
* fix #14217 (#14218)cooldome2020-05-051-2/+2
* Error -> Defect for defects (#13908)Jacek Sieka2020-04-281-1/+1
* fixes #12741 (#14005)Andreas Rumpf2020-04-191-39/+45
* fix #13538 sigmatch errors are now sorted (#13701)Timothee Cour2020-03-202-31/+31
* fixes a test caseAraq2019-12-241-1/+3
* remove deprecated procs (#12535)Andreas Rumpf2019-11-052-12/+12
* ungeneric unsigned ops (#12230)Jasper Jenkins2019-10-111-7/+7
* fixes #11807 (#11900)Andreas Rumpf2019-08-071-6/+6
* fix #11854 (#11857)Arne Döring2019-07-301-1/+1
* address commentsTimothee Cour2019-07-081-2/+2
* make tests/concepts/t3330.nim disabled again: the order of candidates is mach...Timothee Cour2019-07-081-5/+5
* fix testsTimothee Cour2019-07-082-57/+111
* make megatest work againAraq2019-04-022-0/+5
* 32 bit fixes (#10608)Arne Döring2019-02-131-6/+6
* megatest checks output and nimoutArne Döring2018-12-111-1/+3
* megatest can be executedArne Döring2018-12-111-0/+0
* require errormsg to be specified before file.Arne Döring2018-12-112-17/+15
* cleanup tests; don't use non-working 'msg' spec fieldAraq2018-11-234-4/+3
* More descriptive names of test files (#9531)Miran2018-10-291-0/+0
* make tests green againAndreas Rumpf2018-10-241-0/+1
* Merge tests into a larger file (part 5 of ∞) (#9368)Miran2018-10-161-1/+1
* correctly render AST in doAssert/assert condition: fixes #8518; refs #9301 (#...Timothee Cour2018-10-141-37/+52
* put several issues in tests (#9352)Miran2018-10-131-11/+57
* Merge tests into a larger file (part 1 of ∞) (#9318)Miran2018-10-1216-428/+862
* compiler: show name of instantiating context in error traces (#6763) (#9207)xzfc2018-10-111-2/+2
* closes #5868Araq2018-10-031-0/+19
* fixes #7092Araq2018-10-021-2/+12
* closes #6249Araq2018-10-021-0/+22
* Fix #8126 (#8712)zah2018-08-211-0/+12
* fixes #6255, add `system.ashr` arithmetic right shift (#8547)andri lim2018-08-071-6/+6
* Correctly hash inferred types (#8286)LemonBoy2018-07-121-0/+16
* make concepts tests green againAndreas Rumpf2018-07-062-12/+12
* Fix constant folding of len() with concept type (#8143)LemonBoy2018-06-301-0/+12
* Don't consider concept types as non-complex during codegen (#8119)LemonBoy2018-06-271-1/+14
* Merge branch 'devel' into typedesc-reformsAndreas Rumpf2018-06-261-0/+31
|\
| * More concept fixesLemonBoy2018-06-241-0/+31
* | fixes #7222; fixes #5595; fixes #3747Zahary Karadjov2018-06-163-0/+45
|/
* Correct field lookup in concept typesLemonBoy2018-06-121-0/+27
* make more tests greenAraq2018-04-301-1/+1
* Static[T] fixes (#7333)zah2018-03-241-0/+19
* better error messages: use <T1, T2> instead of (T1, T2) in order to prevent c...Araq2018-02-103-29/+29
* improve the error messages regarding type mismatches in overloading resolutionAndreas Rumpf2018-02-041-7/+30
* make tests green againAraq2018-01-151-1/+1
* fix #6462Zahary Karadjov2017-12-211-0/+23
* fix #6277Zahary Karadjov2017-12-211-0/+20
/a> 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423