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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
|
/*
TEST_OUTPUT:
---
int
double
foobar7406(T)
test7406()
int
foobar7406(T)
int
test7406()
---
*/
extern(C) int printf(const char* fmt, ...);
/***************************************/
void test1()
{
char[] a;
int foo()
{
printf("foo\n");
a ~= "foo";
return 10;
}
foreach (i; 0 .. foo())
{
printf("%d\n", i);
a ~= cast(char)('0' + i);
}
assert(a == "foo0123456789");
foreach_reverse (i; 0 .. foo())
{
printf("%d\n", i);
a ~= cast(char)('0' + i);
}
assert(a == "foo0123456789foo9876543210");
}
/***************************************/
// 2411
struct S2411
{
int n;
string s;
}
void test2411()
{
S2411 s;
assert(s.n == 0);
assert(s.s == "");
foreach (i, ref e; s.tupleof)
{
static if (i == 0)
e = 10;
static if (i == 1)
e = "str";
}
assert(s.n == 10);
assert(s.s == "str");
}
/***************************************/
// 2442
template canForeach(T, E)
{
enum canForeach = __traits(compiles,
{
foreach(a; new T)
{
static assert(is(typeof(a) == E));
}
});
}
void test2442()
{
struct S1
{
int opApply(int delegate(ref const(int) v) dg) const { return 0; }
int opApply(int delegate(ref int v) dg) { return 0; }
}
S1 ms1;
const S1 cs1;
foreach (x; ms1) { static assert(is(typeof(x) == int)); }
foreach (x; cs1) { static assert(is(typeof(x) == const int)); }
struct S2
{
int opApply(int delegate(ref int v) dg) { return 0; }
int opApply(int delegate(ref long v) dg) { return 0; }
}
S2 ms2;
static assert(!__traits(compiles, { foreach ( x; ms2) {} })); // ambiguous
static assert( __traits(compiles, { foreach (int x; ms2) {} }));
struct S3
{
int opApply(int delegate(ref int v) dg) const { return 0; }
int opApply(int delegate(ref int v) dg) shared const { return 0; }
}
immutable S3 ms3;
static assert(!__traits(compiles, { foreach (int x; ms3) {} })); // ambiguous
// from https://github.com/dlang/dmd/pull/120
static class C
{
int opApply(int delegate(ref int v) dg) { return 0; }
int opApply(int delegate(ref const int v) dg) const { return 0; }
int opApply(int delegate(ref immutable int v) dg) immutable { return 0; }
int opApply(int delegate(ref shared int v) dg) shared { return 0; }
int opApply(int delegate(ref shared const int v) dg) shared const { return 0; }
}
static class D
{
int opApply(int delegate(ref int v) dg) const { return 0; }
}
static class E
{
int opApply(int delegate(ref int v) dg) shared const { return 0; }
}
static assert( canForeach!( C , int ));
static assert( canForeach!( const(C) , const(int) ));
static assert( canForeach!( immutable(C) , immutable(int) ));
static assert( canForeach!( shared(C) , shared(int) ));
static assert( canForeach!(shared(const(C)), shared(const(int))));
static assert( canForeach!( D , int));
static assert( canForeach!( const(D) , int));
static assert( canForeach!( immutable(D) , int));
static assert(!canForeach!( shared(D) , int));
static assert(!canForeach!(shared(const(D)), int));
static assert(!canForeach!( E , int));
static assert(!canForeach!( const(E) , int));
static assert( canForeach!( immutable(E) , int));
static assert( canForeach!( shared(E) , int));
static assert( canForeach!(shared(const(E)), int));
}
/***************************************/
// 2443
struct S2443
{
int[] arr;
int opApply(int delegate(size_t i, ref int v) dg)
{
int result = 0;
foreach (i, ref x; arr)
{
if ((result = dg(i, x)) != 0)
break;
}
return result;
}
}
void test2443()
{
S2443 s;
foreach (i, ref v; s) {}
foreach (i, v; s) {}
static assert(!__traits(compiles, { foreach (ref i, ref v; s) {} }));
static assert(!__traits(compiles, { foreach (ref i, v; s) {} }));
}
/***************************************/
// 3187
class Collection
{
int opApply(int delegate(ref Object) a)
{
return 0;
}
}
Object testForeach(Collection level1, Collection level2)
{
foreach (first; level1) {
foreach (second; level2)
return second;
}
return null;
}
void test3187()
{
testForeach(new Collection, new Collection);
}
/***************************************/
// 4090
void test4090a()
{
double[10] arr = 1;
double tot = 0;
static assert(!__traits(compiles, {
foreach (immutable ref x; arr) {}
}));
foreach (const ref x; arr)
{
static assert(is(typeof(x) == const double));
tot += x;
}
foreach (immutable x; arr)
{
static assert(is(typeof(x) == immutable double));
tot += x;
}
assert(tot == 1*10 + 1*10);
}
void test4090b()
{
int tot = 0;
static assert(!__traits(compiles, {
foreach (immutable ref x; 1..11) {}
}));
foreach (const ref x; 1..11)
{
static assert(is(typeof(x) == const int));
tot += x;
}
foreach (immutable x; 1..11)
{
static assert(is(typeof(x) == immutable int));
tot += x;
}
assert(tot == 55 + 55);
}
/***************************************/
// 5605
struct MyRange
{
int theOnlyOne;
@property bool empty() const
{
return true;
}
@property ref int front()
{
return theOnlyOne;
}
void popFront()
{}
}
struct MyCollection
{
MyRange opSlice() const
{
return MyRange();
}
}
void test5605()
{
auto coll = MyCollection();
foreach (i; coll) { // <-- compilation error
// ...
}
}
/***************************************/
// 7004
void func7004(A...)(A args)
{
foreach (i, e; args){} // OK
foreach (uint i, e; args){} // OK
foreach (size_t i, e; args){} // NG
}
void test7004()
{
func7004(1, 3.14);
}
/***************************************/
// 7406
template TypeTuple7406(T...)
{
alias T TypeTuple7406;
}
template foobar7406(T)
{
enum foobar = 2;
}
void test7406()
{
foreach (sym; TypeTuple7406!(int, double)) // OK
pragma(msg, sym.stringof);
foreach (sym; TypeTuple7406!(foobar7406)) // OK
pragma(msg, sym.stringof);
foreach (sym; TypeTuple7406!(test7406)) // OK
pragma(msg, sym.stringof);
foreach (sym; TypeTuple7406!(int, foobar7406)) // Error: type int has no value
pragma(msg, sym.stringof);
foreach (sym; TypeTuple7406!(int, test7406)) // Error: type int has no value
pragma(msg, sym.stringof);
}
/***************************************/
// 6659
void test6659()
{
static struct Iter
{
~this()
{
++_dtor;
}
bool opCmp(ref const Iter rhs) { return _pos == rhs._pos; }
void opUnary(string op:"++")() { ++_pos; }
size_t _pos;
static size_t _dtor;
}
foreach (ref iter; Iter(0) .. Iter(10))
{
assert(Iter._dtor == 0);
}
assert(Iter._dtor == 2);
Iter._dtor = 0; // reset
for (auto iter = Iter(0), limit = Iter(10); iter != limit; ++iter)
{
assert(Iter._dtor == 0);
}
assert(Iter._dtor == 2);
}
void test6659a()
{
auto value = 0;
try
{
for ({scope(success) { assert(value == 1); value = 2;} } true; )
{
value = 1;
break;
}
assert(value == 2);
}
catch (Exception e)
{
assert(0);
}
assert(value == 2);
}
void test6659b()
{
auto value = 0;
try
{
for ({scope(failure) value = 1;} true; )
{
throw new Exception("");
}
assert(0);
}
catch (Exception e)
{
assert(e);
}
assert(value == 1);
}
void test6659c()
{
auto value = 0;
try
{
for ({scope(exit) value = 1;} true; )
{
throw new Exception("");
}
assert(0);
}
catch (Exception e)
{
assert(e);
}
assert(value == 1);
}
/***************************************/
// 10221
void test10221()
{
// All of these should work, but most are too slow. Just check they compile.
foreach(char i; char.min..char.max+1) {}
if (0) foreach(wchar i; wchar.min..wchar.max+1) {}
if (0) foreach(dchar i; dchar.min..dchar.max+1) {}
foreach(byte i; byte.min..byte.max+1) {}
foreach(ubyte i; ubyte.min..ubyte.max+1) {}
if (0) foreach(short i; short.min..short.max+1) {}
if (0) foreach(ushort i; ushort.min..ushort.max+1) {}
if (0) foreach(int i; int.min..int.max+1U) {}
if (0) foreach(uint i; uint.min..uint.max+1L) {}
if (0) foreach(long i; long.min..long.max+1UL) {}
foreach_reverse(char i; char.min..char.max+1) { assert(i == typeof(i).max); break; }
foreach_reverse(wchar i; wchar.min..wchar.max+1) { assert(i == typeof(i).max); break; }
foreach_reverse(dchar i; dchar.min..dchar.max+1) { assert(i == typeof(i).max); break; }
foreach_reverse(byte i; byte.min..byte.max+1) { assert(i == typeof(i).max); break; }
foreach_reverse(ubyte i; ubyte.min..ubyte.max+1) { assert(i == typeof(i).max); break; }
foreach_reverse(short i; short.min..short.max+1) { assert(i == typeof(i).max); break; }
foreach_reverse(ushort i; ushort.min..ushort.max+1) { assert(i == typeof(i).max); break; }
foreach_reverse(int i; int.min..int.max+1U) { assert(i == typeof(i).max); break; }
foreach_reverse(uint i; uint.min..uint.max+1L) { assert(i == typeof(i).max); break; }
foreach_reverse(long i; long.min..long.max+1UL) { assert(i == typeof(i).max); break; }
}
/***************************************/
// 7814
struct File7814
{
~this(){}
}
struct ByLine7814
{
File7814 file;
// foreach interface
@property bool empty() const { return true; }
@property char[] front() { return null; }
void popFront(){}
}
void test7814()
{
int dummy;
ByLine7814 f;
foreach (l; f) {
scope(failure) // 'failure' or 'success' fails, but 'exit' works
dummy = -1;
dummy = 0;
}
}
/***************************************/
// 10049
struct ByLine10049
{
bool empty() { return true; }
string front() { return null; }
void popFront() {}
~this() {} // necessary
}
void test10049()
{
ByLine10049 r;
foreach (line; r)
{
doNext:
{}
}
}
/******************************************/
struct T11955(T...) { T field; alias field this; }
alias X11955 = uint;
struct S11955
{
enum empty = false;
T11955!(uint, uint) front;
void popFront() {}
}
void test11955()
{
foreach(X11955 i, v; S11955()) {}
}
/******************************************/
// 6652
void test6652()
{
size_t sum;
foreach (i; 0 .. 10)
sum += i++; // 0123456789
assert(sum == 45);
sum = 0;
foreach (ref i; 0 .. 10)
sum += i++; // 02468
assert(sum == 20);
sum = 0;
foreach_reverse (i; 0 .. 10)
sum += i--; // 9876543210
assert(sum == 45);
sum = 0;
foreach_reverse (ref i; 0 .. 10)
sum += i--; // 97531
assert(sum == 25);
enum ary = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
sum = 0;
foreach (i, v; ary)
{
assert(i == v);
sum += i++; // 0123456789
}
assert(sum == 45);
sum = 0;
foreach (ref i, v; ary)
{
assert(i == v);
sum += i++; // 02468
}
assert(sum == 20);
sum = 0;
foreach_reverse (i, v; ary)
{
assert(i == v);
sum += i--; // 9876543210
}
assert(sum == 45);
sum = 0;
foreach_reverse (ref i, v; ary)
{
assert(i == v);
sum += i--; // 97531
}
assert(sum == 25);
static struct Iter
{
~this()
{
++_dtorCount;
}
bool opCmp(ref const Iter rhs)
{
return _pos == rhs._pos;
}
void opUnary(string op)() if(op == "++" || op == "--")
{
mixin(op ~ q{_pos;});
}
size_t _pos;
static size_t _dtorCount;
}
Iter._dtorCount = sum = 0;
foreach (v; Iter(0) .. Iter(10))
sum += v._pos++; // 0123456789
assert(sum == 45 && Iter._dtorCount == 12);
Iter._dtorCount = sum = 0;
foreach (ref v; Iter(0) .. Iter(10))
sum += v._pos++; // 02468
assert(sum == 20 && Iter._dtorCount == 2);
// additional dtor calls due to unnecessary postdecrements
Iter._dtorCount = sum = 0;
foreach_reverse (v; Iter(0) .. Iter(10))
sum += v._pos--; // 9876543210
assert(sum == 45 && Iter._dtorCount >= 12);
Iter._dtorCount = sum = 0;
foreach_reverse (ref v; Iter(0) .. Iter(10))
sum += v._pos--; // 97531
assert(sum == 25 && Iter._dtorCount >= 2);
}
/***************************************/
// 8595
struct OpApply8595
{
int opApply(int delegate(ref int) dg)
{
assert(0);
}
}
string test8595()
{
foreach (elem; OpApply8595.init)
{
static assert(is(typeof(return) == string));
}
assert(0);
}
/***************************************/
// 9068
struct Foo9068
{
static int[] destroyed;
int x;
~this() { destroyed ~= x; }
}
struct SimpleCounter9068
{
static int destroyedCount;
enum int limit = 5;
int counter;
~this() { destroyedCount++; }
// Range primitives.
@property bool empty() const { return counter >= limit; }
@property int front() { return counter; }
void popFront() { counter++; }
}
void test9068()
{
//----------------------------------------
// There was never a bug in this case (no range).
int sum;
loop_simple:
foreach (i; [10, 20])
{
sum += i;
break loop_simple;
}
assert(sum == 10);
//----------------------------------------
// There was a bug with loops over ranges.
int last = -1;
X: foreach (i; SimpleCounter9068())
{
switch(i)
{
case 3:
break X;
default:
last = i;
}
}
assert(last == 2);
assert(SimpleCounter9068.destroyedCount == 1);
//----------------------------------------
// Simpler case: the compiler error had nothing to do with the switch.
last = -1;
loop_with_range:
foreach (i; SimpleCounter9068())
{
last = i;
break loop_with_range;
}
assert(last == 0);
assert(SimpleCounter9068.destroyedCount == 2);
//----------------------------------------
// Test with destructors: the loop is implicitly wrapped into two
// try/finally clauses.
loop_with_dtors:
for (auto x = Foo9068(4), y = Foo9068(5); x.x != 10; ++x.x)
{
if (x.x == 8)
break loop_with_dtors;
}
assert(Foo9068.destroyed == [5, 8]);
Foo9068.destroyed = null;
//----------------------------------------
// Same with an unlabelled break.
for (auto x = Foo9068(4), y = Foo9068(5); x.x != 10; ++x.x)
{
if (x.x == 7)
break;
}
assert(Foo9068.destroyed == [5, 7]);
Foo9068.destroyed = null;
}
/***************************************/
// 11885
struct Foo11885
{
static int[] destroyed;
int x;
~this() { destroyed ~= x; }
}
struct SimpleCounter11885
{
static int destroyedCount;
enum int limit = 5;
int counter;
~this() { destroyedCount++; }
// Range primitives.
@property bool empty() const { return counter >= limit; }
@property int front() { return counter; }
void popFront() { counter++; }
}
void test11885()
{
//----------------------------------------
// There was never a bug in this case (no range).
int sum;
loop_simple:
foreach (i; [10, 20])
{
sum += i;
continue loop_simple;
}
assert(sum == 30);
//----------------------------------------
// There was a bug with loops over ranges.
int last = -1;
X: foreach (i; SimpleCounter11885())
{
switch(i)
{
case 3:
continue X;
default:
last = i;
}
}
assert(last == 4);
assert(SimpleCounter11885.destroyedCount == 1);
//----------------------------------------
// Simpler case: the compiler error had nothing to do with the switch.
last = -1;
loop_with_range:
foreach (i; SimpleCounter11885())
{
last = i;
continue loop_with_range;
}
assert(last == 4);
assert(SimpleCounter11885.destroyedCount == 2);
//----------------------------------------
// Test with destructors: the loop is implicitly wrapped into two
// try/finally clauses.
loop_with_dtors:
for (auto x = Foo11885(4), y = Foo11885(5); x.x != 10; ++x.x)
{
if (x.x == 8)
continue loop_with_dtors;
}
assert(Foo11885.destroyed == [5, 10]);
Foo11885.destroyed = null;
//----------------------------------------
// Same with an unlabelled continue.
for (auto x = Foo11885(4), y = Foo11885(5); x.x != 10; ++x.x)
{
if (x.x == 7)
continue;
}
assert(Foo11885.destroyed == [5, 10]);
Foo11885.destroyed = null;
}
/***************************************/
// 10475
void test10475a()
{
struct DirIterator
{
int _store = 42;
~this() { assert(0); }
}
DirIterator dirEntries()
{
throw new Exception("");
}
try
{
for (DirIterator c = dirEntries(); true; ) {}
assert(0);
}
catch (Exception e)
{
assert(e.next is null);
}
}
void test10475b()
{
uint g;
struct S
{
uint flag;
~this() { g |= flag; }
}
S thrown()
{
throw new Exception("");
}
g = 0x0;
try
{
for (auto x = S(0x1), y = S(0x2), z = thrown(); true; ) {}
assert(0);
}
catch (Exception e)
{
assert(e.next is null);
}
assert(g == 0x3);
g = 0x0;
try
{
for (auto x = S(0x1), y = thrown(), z = S(0x2); true; ) {}
assert(0);
}
catch (Exception e)
{
assert(e.next is null);
}
assert(g == 0x1);
g = 0x0;
try
{
for (auto x = thrown(), y = S(0x1), z = S(0x2); true; ) {}
assert(0);
}
catch (Exception e)
{
assert(e.next is null);
}
assert(g == 0x0);
}
/***************************************/
// 11291
void test11291()
{
struct Tuple(T...)
{
T field;
alias field this;
}
struct zip
{
string[] s1, s2;
bool empty() { return true; }
auto front() { return Tuple!(string, string)(s1[0], s2[0]); }
void popFront() {}
}
foreach (const a, const b; zip(["foo"], ["bar"]))
{
static assert(is(typeof(a) == const string));
static assert(is(typeof(b) == const string));
static assert(!__traits(compiles, a = "something"));
static assert(!__traits(compiles, b = "something"));
}
}
/***************************************/
// 12103
alias TypeTuple12103(TL...) = TL;
alias Id12103(alias a) = a;
void test12103()
{
alias fs1 = TypeTuple12103!(() => 0, () => 1);
foreach (i, f; fs1)
{
static assert(f() == i);
static assert(Id12103!f() == i);
assert(f() == i);
assert(Id12103!f() == i);
}
alias fs2 = TypeTuple12103!(x=>x+0, y=>y+1);
foreach (i, f; fs2)
{
static assert(f(0) == i);
static assert(Id12103!f(0) == i);
assert(f(0) == i);
assert(Id12103!f(0) == i);
}
}
/***************************************/
// 12739
struct S12739
{
nothrow:
int opApply(int delegate(ref int) nothrow dg)
{
return 0;
}
}
void test12739() nothrow
{
S12739 s;
foreach (e; s) {}
}
/***************************************/
// 12932
void test12932() @nogc
{
int sum;
foreach (e; [1,2,3])
{
sum += e;
}
assert(sum == 6);
}
/***************************************/
// 13756
void test13756()
{
printf("test13756()\n");
int[int] org = [1:2], aa;
aa = org.dup;
foreach (v; aa)
{
static assert(is(typeof(v) == int));
v = 20;
}
assert(aa == [1:2]);
aa = org.dup;
foreach (ref v; aa)
{
static assert(is(typeof(v) == int));
v = 20;
}
assert(aa == [1:20]);
aa = org.dup;
foreach (k, v; aa)
{
static assert(is(typeof(k) == int));
static assert(is(typeof(v) == int));
k = 10;
v = 20;
}
assert(aa == [1:2]);
aa = org.dup;
foreach (k, ref v; aa)
{
static assert(is(typeof(k) == int));
static assert(is(typeof(v) == int));
k = 10;
v = 20;
}
assert(aa == [1:20]);
aa = org.dup;
foreach (ref k, v; aa) // NG -> OK
{
static assert(is(typeof(k) == const int));
static assert(is(typeof(v) == int));
static assert(!__traits(compiles, k = 10));
v = 20;
}
assert(aa == [1:2]);
aa = org.dup;
foreach (ref k, ref v; aa) // NG -> OK
{
static assert(is(typeof(k) == const int));
static assert(is(typeof(v) == int));
static assert(!__traits(compiles, k = 10));
v = 20;
}
assert(aa == [1:20]);
foreach (ref const k, v; aa) // NG -> OK, same with 'ref k'
{
static assert(is(typeof(k) == const int));
}
}
/***************************************/
// 14653
static string result14653;
class RangeClass14653
{
int a;
this(T)(T...) { result14653 ~= "c"; }
~this() { result14653 ~= "d"; a = -1; }
@property bool empty() { result14653 ~= "e"; return a >= 2; }
@property int front() { result14653 ~= "f"; assert(a >= 0); return a; }
void popFront() { result14653 ~= "p"; ++a; }
}
auto scoped14653(T, A...)(A args)
{
static struct Scoped(T)
{
void[__traits(classInstanceSize, T)] store;
T payload() { return cast(T)cast(void*)store.ptr; }
alias payload this;
~this()
{
//.destroy(payload);
payload.__dtor();
(cast(byte[])store)[] = 0;
}
}
Scoped!T result = void;
//emplace!T(result.store[], args);
result.store[] = typeid(T).initializer[];
result.payload.__ctor(args);
return result;
}
void test14653()
{
printf("test14653()\n");
foreach (e; scoped14653!RangeClass14653(1))
{
result14653 ~= "b";
}
assert(result14653 == "cefbpefbped", result14653);
}
/***************************************/
int main()
{
test1();
test2411();
test2442();
test2443();
test3187();
test4090a();
test4090b();
test5605();
test7004();
test10221();
test7406();
test6659();
test6659a();
test6659b();
test6659c();
test7814();
test6652();
test9068();
test11885();
test10475a();
test10475b();
test11291();
test12103();
test12739();
printf("test12932()\n");
test12932();
test13756();
test14653();
printf("Success\n");
return 0;
}
|