Daily bump.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test23617.d
blob2d03ee7fae9cd27504c48e612657cea62728e93a
1 // https://issues.dlang.org/show_bug.cgi?id=23617
3 struct S
5 void foo() {}
8 struct Wrapper
10 size_t currentIndex;
11 S[] arrayOfS;
13 auto opDispatch(string name, T ...)(T t)
15 return __traits(child, arrayOfS[this.currentIndex], __traits(getMember, S, name))(t);
19 void main()
21 Wrapper w;
22 w.opDispatch!"foo"();