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