d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice18469.d
blob796dd3dcc9decdb2f70635523633cd8ff93ba065
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice18469.d(10): Error: no property `opCall` for `this.~this()` of type `void`
5 ---
6 */
7 class Bar
9 ~this(){}
10 this(){alias T = typeof(Bar.__dtor.opCall);}
13 void main() {}