blob: e118d3d61e391b18c006b2626a87c54352b42219 [file] [log] [blame]
/*
DFLAGS:
TEST_OUTPUT:
---
fail_compilation/fail19923.d(16): Error: `object.TypeInfo_Class` could not be found, but is implicitly used
---
*/
module object;
class Object {}
void test()
{
Object o;
auto ti = o.classinfo;
}