d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test10073.d
blob1faf6bf18e474a0df951d9eef0caedc694f6de08
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