d: Merge upstream dmd 47871363d, druntime, c52e28b7, phobos 99e9c1b77.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test10073.d
blob1e0c5466353807f3ada5139b66d6097f1ac03173
1 struct Arr(T)
3 T[] dArr;
4 alias dArr this;
5 bool opEquals(Arr!T d)
7 foreach (idx, it; d)
9 if (this[idx] != it)
11 return false;
14 return true;
18 class Bar
20 Arr!Foo fooQ;
23 class Foo {} // NG