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