blob: 8803956f6c592ec0729aff4d245da1a173d7a6c3 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice18469.d(10): Error: no property `opCall` for type `void`
---
*/
class Bar
{
~this(){}
this(){alias T = typeof(Bar.__dtor.opCall);}
}
void main() {}