This repository has been archived by the owner on Jul 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mono_tests.files
2752 lines (2752 loc) · 212 KB
/
mono_tests.files
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-258.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-optional-40.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-754.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-26.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-initialize-12.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-27.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-177.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-139.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-optional-14.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-691.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-185.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-35.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-012.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-086.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-static-using-09-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-163.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-432.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-289.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-optional-17.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-22.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-916.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-75.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-823.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-47.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-278-4-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-058.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-friend-03.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-866.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-69.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-583.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-580.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-304.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-optional-16.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-114.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-013-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-856.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-117.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-577.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-512.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-168.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-283.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-017.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-532.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-externalias-08.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-124.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-collectioninit-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-autoproperty-20.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-517.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-anontype-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-124.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-98.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-045.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-002.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-309.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-028.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-363.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-010.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-named-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-28.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-796.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-debug-24.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-111.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-068.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-35.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-255.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-494.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-527.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-608.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-242.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-486.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-035.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-decl-expr-03.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-171.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-507.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-889.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-944.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-203.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-516.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-634.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-223.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-319.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-347.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-312.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-77.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-linq-14.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-005.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-2.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-095.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-initialize-03.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-368.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-162.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-partial-010.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-298.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-237.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-207.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-273.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-variance-15.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-764.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-352.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-fixed-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-ex-filter-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-165.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-67.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-794.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-37.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-193.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-576.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-830.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-313.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-expression-bodied-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-728.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-662.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-77.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-autoproperty-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-cls-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-242.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-373.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-199.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-25.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-599.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/support-388.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-647.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-412.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-862.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-189.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-linq-10.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-named-09.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-907.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-817.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-394.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-131.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-001.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-761-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-514.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-linq-21.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-tuple-10.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-096.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-39.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-084.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-481.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-partial-12.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-null-operator-14.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-iter-33.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-71.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-131.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-602.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-626.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-104.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-702.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-439.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-315.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-146.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-optional-07.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-17.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-661.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-523.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-187.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-391.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-27.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-named-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-variance-11.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-friend-13-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-linq-06.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-11.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-524.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-194.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-linq-24.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-310.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-724.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-86.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-named-05.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-919.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-038.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-028.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-06.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-40.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-358.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-03.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-132.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-270.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-iter-08.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-82.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-274.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-externalias-07.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-119.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-356.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-751.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-116.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-271.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-ex-filter-03.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-186.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-878.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-030.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-382.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-static-using-07.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-070.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-40-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-413.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-12.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-variance-20.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-linq-28.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-792.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-debug-28.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-73.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-743.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-477.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-069.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-396-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-269.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-36.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-294.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-464.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-234.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-iter-27.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-055.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-045.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-throw-expr-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-395.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-260.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-initialize-05.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-389.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-interpolation-06.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-303.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-30.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-iter-14.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-460.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-753.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-10.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-006.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-199.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-940.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-600.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-173.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-129.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-10.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-561.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-625.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-433-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-16.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-variance-7.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-interpolation-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-587.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-333.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-268.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-009.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-684.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-255.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-pattern-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-error-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-846.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-iter-26.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-85.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-static-using-13.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-232.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-07.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-com-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-088.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-050.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-438.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-115.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-partial-26.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-243.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-partial-05.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-610.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-271.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-ref-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-871.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-12.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-290.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-354.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-144.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-350.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-80.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-711.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-750.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-iter-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-26.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-297.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-iter-20.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-58.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-074.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-autoproperty-07.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-496.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-200.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-100.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/support-353.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-92.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-814.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-expression-bodied-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-896.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-216.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-debug-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-881.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-friend-00-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-112.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-518.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-306.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-variance-2.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-46.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-38.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-467.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-491.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-22.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-601.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-261.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-145.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-770.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-variance-4.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-33.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-029.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-linq-18.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-936.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-11.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-03.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-176.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-197.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-87.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-decl-expr-05.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-932.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-26.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-371-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-89.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-partial-09.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-831.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-347.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-345.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-042.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-73.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-optional-26.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-119.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-809.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-30.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-52.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-externalias-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-named-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-1.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-061.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-083.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-79.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-003.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-154.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-446.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-599.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-etree-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-449.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-424.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-560.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-708.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-688.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-336.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-003.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-250.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-partial-17.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-133.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-591.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-09.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-41.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-545.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-423.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-537.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-339.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-02-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-374.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-066.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-544.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-16.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-555.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-148.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-047.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-58.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-532.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-239.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-17.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-417.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-385.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-039.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-002.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-debug-06.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-111.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-646-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-94.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-401.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-209.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-155.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-19.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-498.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-716.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-818.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-120.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-072.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-static-using-03.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-interpolation-08.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-338.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-027.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-416.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-369.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-tuple-05.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-461.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-007.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-144.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-811.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-269.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-510.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-403-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-104.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-20.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-531.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-pattern-12.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-externalias-01-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-65.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-032.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-619.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-911.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-097.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-70.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-107.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-033.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-variance-8.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-73.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-anontype-07.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-002.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-198.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-364.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-224.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-48.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-105.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-456.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-488.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-488.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-757.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-651.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-129.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-048.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-33.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-246.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-39.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-152.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-367.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-11.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-296.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-318.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-ref-05.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-optional-32.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-474.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-670.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/projects/MonoTouch/AppDelegate.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/projects/MonoTouch/Main.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/projects/MonoTouch/ivt.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-241.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-272.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-557.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-945.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-396.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-931.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-334.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-873.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-135.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-224.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-558.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-24.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-928.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-281.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-74.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-263.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-anontype-10.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-063.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-504.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-tuple-07.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-11.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-iter-14.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-330.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-645-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-121.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-018.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-33.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-25.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-305.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-static-using-06.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-113.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-interpolation-03.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-249.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-712.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-26.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-343.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-426.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-638.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-262.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-27.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-32.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-541.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-601.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-319.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-546.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-370.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-156.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-432.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-5.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-12.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-864.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-iter-15.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-iter-21.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-tuple-06.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-cls-19.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-927.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-87.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-410.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-35.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-optional-34.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-683.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-partial-10.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-iter-12.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-893.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-183.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-451.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-250.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-023.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-196.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-partial-24.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-97.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-184.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-695.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-051.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-675-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-288.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-134.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-588.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-partial-32.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-752.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-251.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-470.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-43.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-899.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-640.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-78.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-435.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-13.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-42.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-static-using-08.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-431-2-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-83.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-025.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-iter-26.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-351.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-284.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-419.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-pattern-08.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-215.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-174-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-518.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-30.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-35.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-808.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-200.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-nameof-03.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-685.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-455.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-149.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-721.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-502.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-19.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-610.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-427.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-65.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-428.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-622.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-286.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-ex-filter-05.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-626.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-cls-10.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-155.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-307.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-optional-13.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-519.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-08.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-230.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-772.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-09.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-353.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-485.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-477.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-929.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-linq-17.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-cls-06.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-iter-23.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-511.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-friend-10.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-066.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-optional-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-660.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gen-check.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-160.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-521.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-32.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-275.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-friend-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-023.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-57.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-717.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-043.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-172.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-687.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-null-operator-15.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-403.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-17.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-049.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-005.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-pattern-09.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-335.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-007.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-323.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-fixedbuffer-01-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-867.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-595.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-87.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-715-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-044.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-327.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-17.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-166-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-null-operator-21.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-108.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-debug-26.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-393.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-419.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-410-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-07.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-named-06.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-418.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-123.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-41.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-835.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-037.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-934.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-259.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-05.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-366.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-iter-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-024.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-20.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-40.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-607.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-fixedbuffer-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-356.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-49.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-807.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-267.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-29.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-355.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-247.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-310.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-710.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-487.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-011.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-partial-35.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-161-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-176.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-25.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-327.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-24.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-named-05.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-575.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-76.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-iter-18.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-536.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-749.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-debug-30.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-218.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-23.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-22-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-36.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-852.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-40.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-252.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-758.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-60.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-506.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-213.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-822-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-019.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-034.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-612.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-29.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-75.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-iter-12.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-016.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-iter-07.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-expression-bodied-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-partial-22.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-06.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-debug-11.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-primary-ctor-09.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-340.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-655.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-16.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-117.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-629.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-903.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-ref-03.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-88.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-partial-14.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-142.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-418-2-mod.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-355.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-238-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-172-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-10.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-123.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-partial-23.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-012.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-249.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-linq-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-378.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-23.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-298.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-067.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-266.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-568.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-iter-03.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-17.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-631.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-179.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-793.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-052-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-optional-18.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-82.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-23.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-53.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-645-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-755.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-127.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-638.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-externalias-09.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-82.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-420.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-140.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-821.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-447-3-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-externalias-03.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-150.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-24-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-592.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-partial-08.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-throw-expr-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-078.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-21.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-295.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-743-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-interpolation-05.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-547.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-014.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-781.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-iter-13.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-debug-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-457.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-393.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-259.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-023.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-423.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-76.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-451-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-094.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-discards-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-debug-23.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-366.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-25.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-476.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-027.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-6.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-430.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-debug-05.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-08.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-52.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-198.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-165.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-009.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-607.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-linq-07.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-918.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-friend-08.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-anontype-13.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-306.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-autoproperty-14.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-24.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-64.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-169.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-initialize-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-51.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-471.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-108.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-098-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-debug-09.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-641-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-93.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-462.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-partial-20.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-748.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-820.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-28.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-static-using-10.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-lambda-30.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-143.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-null-operator-22.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-38.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-158.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-052.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-412.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-930.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-577.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-110.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-157.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-143.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-578.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-252.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-408.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-116.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-520.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-278-5-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-589.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-344.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-optional-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-148.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-865.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-392.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-681.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-254.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-186.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-403.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-34.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-025.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-278.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-var-06.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-16.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-699.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-422.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-585.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-377.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-551.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-024.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-640.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-225.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-22.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-317.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-103.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-538.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-285.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-726.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-12.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-220.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-535.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-747.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-822.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-named-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-364.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-326.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-689.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-398.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-480.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-161.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-572.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-049.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-86.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-276.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-348.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-408.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-273.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-561.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-801.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-950.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-030.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-695-2-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-dictinit-05.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-461.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-709.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-240.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-184.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-100.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-548.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-447.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-83.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-375.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-565.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-057.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-linq-22.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-174.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-81.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-com-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-debug-08.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-349.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-primary-ctor-07.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-232.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-readonly-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-75.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-27.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-053.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-161.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-109.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-288.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-857.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-011.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-041.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-828.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-511.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-partial-01.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-495.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-274.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-191.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-503.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-630.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-645.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-115.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-165-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-631.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-90.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-default-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-136.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-914.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-named-11.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-friend-14.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-442.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-linq-23.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-114.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-implicitarray-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-named-06.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-736.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-394.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-534.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-529.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-027.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-31.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-ref-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-331.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-424.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-42.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-944-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-545.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-735.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-445.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-145.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-319-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-639.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-115.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-cls-15.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-189.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-287.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-593.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-235-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-594.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-396.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-897.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-externalias-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-071.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-544.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-502.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/support-test-debug-04.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-etree-27.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-128.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-384.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-13.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-63.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-45.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-497.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-895.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-436.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-302.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-344.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-293.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-493.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-786.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-559-lib.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-156.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-557.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-optional-06.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-320.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-anontype-02.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-942.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-156.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-227.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gen-cast-test.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-543.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-null-operator-18.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-anon-15.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-async-28.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-799.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-exmethod-20.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/dtest-021.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-370.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-xml-016.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-120.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-827.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-482.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-180.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/gtest-065.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-738.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-727.csast
/home/kobi7/currentWork/cs2nim/tests/samples/monotests/tests/test-null-operator-16.csast